-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.79 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
{
"name": "@js-toolkit/web-utils",
"version": "1.59.0",
"description": "Web utils",
"author": "VZH",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/js-toolkit/web-utils"
},
"scripts": {
"clean": "rimraf dist/*",
"copy:configs": "copyfiles package.json .npmignore README.md LICENSE ./dist/",
"minify": "node-utils-minify --replace ./dist",
"build": "npm run clean && tsc --build ./tsconfig.json && npm run minify",
"patch-publish": "npm run build && npm version patch --force --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags",
"minor-publish": "npm run build && npm version minor --force --no-workspaces-update -m 'v%s' && npm run copy:configs && cd ./dist && npm publish --access public && git push --follow-tags"
},
"optionalDependencies": {
"@js-toolkit/node-utils": "^1.2.1"
},
"devDependencies": {
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.15.0",
"@js-toolkit/configs": "^3.93.12",
"@js-toolkit/utils": "^1.54.7",
"@types/eslint": "^9.6.1",
"@types/eslint__eslintrc": "^2.1.2",
"@types/eslint__js": "^8.42.3",
"@types/lodash.throttle": "^4.1.9",
"@types/uuid": "^10.0.0",
"copyfiles": "^2.4.1",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eventemitter3": "^5.0.1",
"lodash.throttle": "^4.1.1",
"prettier": "^3.3.3",
"reconnecting-websocket": "^4.4.0",
"rimraf": "^6.0.1",
"terser": "^5.36.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"ua-parser-js": "^2.0.0",
"uuid": "^11.0.3",
"webpack": "^5.96.1",
"yargs": "^17.7.2"
}
}