-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.93 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.93 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
{
"name": "commander-jsx",
"version": "0.7.3",
"license": "LGPL-3.0",
"description": "Command-line Arguments Parser with JSX support",
"keywords": [
"command-line",
"arguments",
"parameter",
"parser",
"jsx",
"typescript"
],
"author": "shiy2008@gmail.com",
"homepage": "https://tech-query.me/CommanderJSX/",
"bugs": {
"url": "https://github.com/TechQuery/CommanderJSX/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TechQuery/CommanderJSX.git"
},
"main": "dist/index.js",
"source": "source/dist/index.ts",
"types": "dist/index.d.ts",
"dependencies": {
"@tech_query/node-toolkit": "^2.0.0-beta.3",
"tslib": "^2.8.1",
"web-utility": "^4.6.4"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^24.11.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.3.2",
"open-cli": "^8.0.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typedoc": "^0.28.17",
"typedoc-plugin-mdn-links": "^5.1.1",
"typescript": "~5.9.3"
},
"prettier": {
"tabWidth": 4,
"printWidth": 100,
"trailingComma": "none",
"arrowParens": "avoid",
"singleQuote": true
},
"lint-staged": {
"*.{md,json,yml,ts,tsx}": "prettier --write"
},
"jest": {
"preset": "ts-jest"
},
"scripts": {
"prepare": "husky",
"test": "lint-staged && jest",
"parcel": "tsc && mv dist/jsx-runtime.* . && cp jsx-runtime.js jsx-dev-runtime.js && mv dist/dist/* dist/ && rm -rf dist/dist",
"build": "rm -rf dist/ docs/ && npm run parcel && typedoc",
"start": "typedoc source/ && open-cli docs/index.html",
"prepublishOnly": "npm test && npm run build"
}
}