-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "hansen-tool",
"version": "0.4.8",
"description": "web的一些工具集函数,包括(树形菜单转换、本地存储、文件下载、文件大小单位转换、金额格式化、浏览器判断)等",
"type": "module",
"main": "release/index.esm.js",
"unpkg": "release/index.global.js",
"types": "release/index.d.ts",
"scripts": {
"node": "node examples/server.js",
"dev": "node ./script/dev.mjs runtime -f global -s",
"build": "node ./script/pro.mjs -f global@esm",
"jest": "jest",
"cover": "jest --coverage"
},
"buildOptions": {
"formats": "global"
},
"files": [
"release",
"dist",
"example",
"package.json",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Hansen520/hansen-tool.git"
},
"restartable": "qq",
"verbose": true,
"colours": true,
"nodemonConfig": {
"ignore": [
"node_modules",
"dist"
],
"delay": "2500",
"watch": [
"app.js",
"src"
]
},
"keywords": [
"tool",
"工具",
"前端工具集合",
"树形菜单转换",
"本地存储",
"文件下载",
"文件大小单位转换",
"金额格式化",
"浏览器判断"
],
"ext": "js, json",
"author": "Hansen",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hansen520/hansen-tool/issues"
},
"homepage": "https://github.com/Hansen520/hansen-tool#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/lodash-es": "^4.17.12",
"@types/minimist": "^1.2.5",
"execa": "^9.5.2",
"minimist": "^1.2.8",
"process": "^0.11.10",
"rollup": "^4.28.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
},
"dependencies": {
"lodash-es": "^4.17.21"
}
}