generated from markthree/node-lib-starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 1.5 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"version": "1.0.0",
"name": "undownload",
"bin": {
"download": "./bin/download.js"
},
"description": "all in one 的 node 下载",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/markthree/undownload.git"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"bin",
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"dev": "esno src/index.ts",
"play:cli": "esno src/cli.ts",
"test:watch": "vitest --watch",
"coverage": "vitest --coverage",
"play": "esno playground/index.ts",
"prepublishOnly": "npm run build",
"build:watch": "npm run build -- --watch src",
"release": "bumpp --commit --push --tag && npm publish"
},
"keywords": [
"lib",
"tool",
"node",
"utils",
"download"
],
"author": {
"name": "markthree",
"email": "1801982702@qq.com",
"url": "https://github.com/markthree"
},
"bugs": {
"email": "1801982702@qq.com",
"url": "https://github.com/markthree/undownload/issues"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.24",
"bumpp": "^7.1.1",
"c8": "^7.11.0",
"esno": "^0.14.1",
"pretty-bytes": "^6.0.0",
"tsup": "^5.12.5",
"typescript": "^4.6.3",
"vitest": "^0.1.27"
},
"dependencies": {
"@types/cli-progress": "^3.11.0",
"cac": "^6.7.12",
"cli-progress": "^3.11.0",
"kolorist": "^1.5.1",
"mem": "^9.0.2"
}
}