-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"name": "@chenkunqing/label-kit",
"version": "0.1.0",
"description": "Reusable label/tagging utilities extracted from Keep Clone",
"repository": {
"type": "git",
"url": "git+https://github.com/chenkunqing/label-kit.git"
},
"homepage": "https://github.com/chenkunqing/label-kit#readme",
"bugs": {
"url": "https://github.com/chenkunqing/label-kit/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist/**/*",
"README.md",
"README.zh-CN.md",
"LICENSE",
"CHANGELOG.md"
],
"sideEffects": false,
"scripts": {
"clean": "node -e \"import('node:fs').then(fs => fs.rmSync('dist', { recursive: true, force: true }))\"",
"build": "npm run clean && npx tsc -p tsconfig.build.json",
"check": "npx tsc -p tsconfig.json",
"demo": "npm run build && node ./demo/minimal-demo.mjs",
"pack:preview": "npm pack --dry-run",
"prepublishOnly": "npm run build && npm run check && npm run pack:preview"
},
"keywords": [
"label",
"tag",
"hashtag",
"typescript"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"typescript": "^5.7.0"
}
}