-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.69 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 1.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@zendrex/annotate",
"version": "0.1.4",
"description": "A modern decorator and metadata system for TypeScript with built-in reflection.",
"author": "zendrex",
"license": "MIT",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
},
"default": "./src/index.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"check": "bunx ultracite check",
"fix": "bunx ultracite fix",
"check-types": "tsc -b",
"changeset": "changeset",
"version": "changeset version",
"prepare": "husky",
"clean": "git clean -xdf dist node_modules"
},
"devDependencies": {
"@biomejs/biome": "2.4.1",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@swc/core": "^1.15.11",
"@types/bun": "latest",
"bun-types": "latest",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"tsup": "^8.5.1",
"ultracite": "^7.2.3"
},
"peerDependencies": {
"reflect-metadata": "^0.2.2",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"bunx ultracite fix"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zendrex/annotate.git"
},
"bugs": {
"url": "https://github.com/zendrex/annotate/issues"
},
"homepage": "https://github.com/zendrex/annotate#readme",
"keywords": [
"typescript",
"decorators",
"metadata",
"reflection",
"annotation",
"interceptor"
]
}