-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.45 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.45 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
{
"name": "@healwrap/hp-upload",
"version": "1.0.0",
"description": "简化文件上传、目录上传的工具库。提供诸如小文件秒传、大文件分片上传、目录上传等功能",
"type": "module",
"main": "main.ts",
"scripts": {
"clear": "rimraf build",
"build": "npm run clear && rollup -c",
"publish": "npm run build && npm publish --access public",
"publish-patch": "node ./scripts/publish.js patch && npm run publish",
"publish-minor": "node ./scripts/publish.js minor && npm run publish",
"publish-major": "node ./scripts/publish.js major && npm run publish",
"format": "prettier --write ./"
},
"keywords": [],
"author": "pepedd864",
"license": "ISC",
"dependencies": {
"spark-md5": "^3.0.2"
},
"devDependencies": {
"@babel/core": "^7.24.7",
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@types/node": "^20.12.12",
"@types/spark-md5": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.45.0",
"prettier": "^3.0.3",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-dts": "^6.1.1",
"ts-node": "^10.9.1",
"tslib": "^2.6.3",
"typescript": "^5.1.6"
}
}