-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.69 KB
/
package.json
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
{
"name": "un-cc",
"version": "1.0.2",
"license": "MIT",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test:cli": "node ./dist/cli.mjs -w -p 1234 -c awesome",
"lint": "tsc --noEmit",
"lint-es": "eslint --ext .ts,.tsx src --color",
"start": "esno play/index.ts",
"test": "vitest",
"verify-commit": "verify-commit-msg",
"prepare": "git-scm-hooks",
"changelog": "npx changeloggithub@latest --all true && git add CHANGELOG.md && git commit -m 'chore: update CHANGELOG.md'",
"release": "bumpp -r && npm run changelog"
},
"author": "hunghg255",
"devDependencies": {
"@hunghg255/eslint-config-ts": "^0.0.8",
"@types/node": "^18.19.33",
"bumpp": "^9.4.1",
"esno": "^0.16.3",
"git-scm-hooks": "^0.0.7",
"prettier": "^3.2.5",
"tslib": "^2.6.2",
"typescript": "^5.4.5",
"unbuild": "^2.0.0",
"verify-commit-msg": "^0.0.10",
"vitest": "^0.34.6"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"keywords": [],
"homepage": "/~https://github.com/hunghg255/un-cc",
"repository": {
"type": "git",
"url": "/~https://github.com/hunghg255/un-cc"
},
"bugs": {
"url": "/~https://github.com/hunghg255/un-cc/issues"
},
"dependencies": {
"globby": "^14.0.1",
"inquirer": "^9.2.22"
}
}