-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "@wudajian/js-utils",
"version": "1.1.5",
"description": "一个 JavaScript 工具库",
"keywords": [
"js",
"utils",
"snippets"
],
"author": "wudajian",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"homepage": "https://github.com/DaJianWu/js-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DaJianWu/js-utils.git"
},
"bugs": {
"url": "https://github.com/DaJianWu/js-utils/issues"
},
"scripts": {
"start": "pnpm run clear && pnpm run server",
"build": "pnpm run clear && tsc",
"server": "node scripts/server.js",
"clear": "node scripts/clear.js dist",
"eslint": "eslint src/**/*.{js,ts}",
"docs": "typedoc",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "20.x",
"@typescript-eslint/eslint-plugin": "5.x",
"@typescript-eslint/parser": "5.x",
"conventional-changelog-cli": "3.x",
"eslint": "8.x",
"husky": "8.x",
"lint-staged": "13.x",
"typedoc": "0.x",
"typescript": "5.x"
}
}