-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.95 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "run-script-cli",
"version": "0.0.15",
"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,
"bin": {
"nr": "./bin/nr.mjs",
"ni": "./bin/ni.mjs",
"nu": "./bin/nu.mjs"
},
"files": [
"bin",
"dist",
"LICENSE"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"test:cli": "node ./dist/nr.cjs",
"lint": "tsc --noEmit",
"lint-es": "eslint --ext .ts,.tsx src --color",
"start": "esno src/nr.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",
"@skarab/detect-package-manager": "^1.0.0",
"@types/node": "^18.19.3",
"bumpp": "^9.2.1",
"esno": "^0.16.3",
"execa": "^8.0.1",
"git-scm-hooks": "^0.0.7",
"kleur": "^4.1.5",
"prettier": "^3.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"unprompts": "^1.0.11",
"verify-commit-msg": "^0.0.10",
"vitest": "^0.34.6"
},
"git-hooks": {
"pre-commit": "npm run lint",
"commit-msg": "npm run verify-commit"
},
"keywords": [
"npm",
"yarn",
"pnpm",
"run",
"script",
"cli",
"nr",
"ni",
"nu"
],
"homepage": "https://github.com/hunghg255/run-script-cli",
"repository": {
"type": "git",
"url": "https://github.com/hunghg255/run-script-cli"
},
"bugs": {
"url": "https://github.com/hunghg255/run-script-cli/issues"
}
}