-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.87 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.87 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
{
"name": "@js-toolkit/web-utils",
"version": "1.68.1",
"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",
"lint": "eslint '**/*.{js,jsx,ts,tsx}' --flag unstable_native_nodejs_ts_config",
"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.6"
},
"devDependencies": {
"@eslint/compat": "2.0.3",
"@eslint/js": "10.0.1",
"@js-toolkit/configs": "3.106.0",
"@js-toolkit/utils": "1.62.0",
"@types/eslint": "9.6.1",
"@types/lodash.throttle": "4.1.9",
"@types/uuid": "11.0.0",
"copyfiles": "2.4.1",
"eslint": "9.39.4",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "10.1.8",
"eslint-config-standard": "17.1.0",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"lodash.throttle": "4.1.1",
"prettier": "3.8.1",
"reconnecting-websocket": "4.4.0",
"rimraf": "6.1.3",
"terser": "5.46.0",
"typescript": "5.9.3",
"typescript-eslint": "8.57.0",
"ua-parser-js": "2.0.9",
"uuid": "13.0.0",
"webpack": "5.105.4",
"yargs": "18.0.0"
}
}