generated from mengxinssfd/examples-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
106 lines (106 loc) · 3.31 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "lib-starter",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "一个基于pnpm typescript monorepo/multirepo的lib快速启动仓库模板",
"scripts": {
"lib-starter:init-ci": "tsx scripts/lib-starter-init-ci.ts",
"pkg:init": "tsx scripts/pkg-init.ts",
"pkg:new": "tsx scripts/pkg-new.ts",
"test": "jest",
"test:cov": "jest --coverage",
"prepare": "husky install && npm run pkg:init",
"husky-msg-init": "husky add .husky/pre-commit \"npx lint-staged --allow-empty \"$1\"\"&husky add .husky/commit-msg \"npx commitlint --edit \"$1\"\"",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"check:deps": "ncu",
"check:ts.node": "tsc -p ./tsconfig.node.json --noEmit",
"check:ts": "tsc --noEmit && npm run check:ts.node",
"check:eslint": "eslint .",
"check:prettier": "prettier ./ --check",
"check:all": "run-p check:ts check:eslint check:prettier",
"typedoc:build": "typedoc --plugin @mxssfd/typedoc-theme --theme my-theme",
"typedoc:deploy": "gh-pages -d docs-html",
"build": "tsx scripts/build.ts -t",
"release": "tsx scripts/release.ts"
},
"lint-staged": {
"*.{json,html,md,yaml}": [
"prettier --write",
"git add"
],
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mengxinssfd/lib-starter.git"
},
"keywords": [
"lib",
"starter"
],
"author": "dyh_a",
"license": "MIT",
"bugs": {
"url": "https://github.com/mengxinssfd/lib-starter/issues"
},
"homepage": "https://github.com/mengxinssfd/lib-starter#readme",
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@microsoft/api-extractor": "^7.47.0",
"@mxssfd/typedoc-theme": "^1.1.3",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@tool-pack/basic": "^0.9.1",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.12",
"@types/minimist": "^1.2.5",
"@types/node": "^20.14.2",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"chalk": "^5.3.0",
"conventional-changelog-cli": "^5.0.0",
"core-js": "^3.37.1",
"enquirer": "^2.4.1",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.2.12",
"eslint-plugin-perfectionist": "^2.11.0",
"eslint-plugin-prettier": "^5.1.3",
"execa": "^9.2.0",
"fs-extra": "^11.2.0",
"gh-pages": "^6.1.1",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": "^15.2.7",
"minimist": "^1.2.8",
"npm-check-updates": "^16.14.20",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"sass": "^1.77.5",
"semver": "^7.6.2",
"ts-jest": "^29.1.4",
"tslib": "^2.6.3",
"tsx": "^4.15.5",
"typedoc": "^0.25.13",
"typescript": "^5.4.5",
"typescript-eslint": "^7.13.0"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE"
]
}