-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.57 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "base-decorators",
"version": "1.2.0",
"description": "Basic decorator primitives for TypeScript. Writing decorators in TS is hard, this library makes it simpler.",
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"dev": "concurrently -c auto --names build,test npm:build:watch npm:test:watch",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "npm run typecheck",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"commit": "cz help",
"cz": "git add . && cz"
},
"keywords": [
"decorator",
"decorators",
"library",
"typescript",
"utility"
],
"homepage": "https://github.com/NeoLabHQ/base-decorators#readme",
"bugs": {
"url": "https://github.com/NeoLabHQ/base-decorators/issues"
},
"license": "AGPL-3.0",
"author": "Vlad Goncharov <vlad.goncharov@neolab.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/NeoLabHQ/base-decorators.git"
},
"files": [
"dist"
],
"main": "./dist/index.cjs",
"types": "./dist/index.d.cts",
"exports": {
".": "./dist/index.cjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.5.0",
"bumpp": "^11.0.1",
"concurrently": "^9.2.1",
"cz-conventional-changelog": "^3.3.0",
"tsdown": "^0.21.7",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}