-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.33 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.33 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
{
"name": "parse-npm-tarball-url",
"version": "5.0.0",
"description": "Parse a tarball URL hosted in the npm registry",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"engines": {
"node": ">=22.13"
},
"files": [
"lib/",
"!*.map"
],
"scripts": {
"build": "rimraf lib && tsc",
"test": "tsx --test test/*.test.ts",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/parse-npm-tarball-url.git"
},
"keywords": [
"npm",
"parse",
"url",
"tarball"
],
"author": {
"name": "Zoltan Kochan",
"email": "z@kochan.io",
"url": "https://www.kochan.io/",
"twitter": "ZoltanKochan"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/parse-npm-tarball-url/issues"
},
"homepage": "https://github.com/pnpm/parse-npm-tarball-url#readme",
"dependencies": {
"semver": "^7.6.3"
},
"devDependencies": {
"@types/node": "^22.10.5",
"@types/semver": "^7.5.8",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "11",
"onFail": "download"
}
}
}