-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 880 Bytes
/
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
{
"name": "get-npm-tgz",
"version": "1.1.0",
"description": "download npm tgz",
"engines": {
"node": ">=18.12.0"
},
"packageManager": "[email protected]",
"main": "bin/www.js",
"scripts": {
"dev": "pnpm build && cd play && tgz",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ten-K/get-npm-tgz.git"
},
"keywords": [
"get-npm-tgz",
"tgz",
"download"
],
"author": {
"name": "Ten-K",
"email": "[email protected]"
},
"license": "MIT",
"bin": {
"tgz": "bin/www.js"
},
"files": [
"dist",
"bin"
],
"bugs": {
"url": "https://github.com/Ten-K/get-npm-tgz/issues"
},
"homepage": "https://github.com/Ten-K/get-npm-tgz#readme",
"devDependencies": {
"@types/node": "22.4.0",
"@types/semver": "^7.5.8",
"tsup": "^7.2.0"
},
"dependencies": {
"axios": "^1.7.9",
"cac": "^6.7.14",
"semver": "^7.6.3"
}
}