-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.55 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.55 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
{
"name": "@zendrex/annotate",
"version": "0.1.5",
"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.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"check": "bunx ultracite check",
"fix": "bunx ultracite fix",
"check-types": "tsc -b",
"changeset": "changeset",
"version": "changeset version",
"prepare": "lefthook install",
"clean": "git clean -xdf dist node_modules"
},
"devDependencies": {
"@biomejs/biome": "2.4.10",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.30.0",
"@swc/core": "^1.15.21",
"@types/bun": "^1.3.11",
"bun-types": "^1.3.11",
"lefthook": "^2.0.0",
"tsdown": "^0.21.7",
"typescript": "^6.0.2",
"ultracite": "^7.4.3"
},
"peerDependencies": {
"reflect-metadata": "^0.2.2"
},
"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"
]
}