-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.28 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
{
"name": "get-npm-tarball-url",
"version": "2.1.0",
"description": "Create the tarball URL of a npm package",
"packageManager": "[email protected]",
"type": "commonjs",
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"exports": {
".": {
"require": {
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
}
}
},
"files": [
"lib"
],
"scripts": {
"test": "jest",
"tsc": "tsc",
"build": "tsup",
"prepublishOnly": "pnpm build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pnpm/get-npm-tarball-url.git"
},
"engines": {
"node": ">=12.17"
},
"keywords": [
"npm",
"url",
"tarball"
],
"author": {
"name": "Zoltan Kochan",
"email": "[email protected]",
"url": "https://www.kochan.io/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/get-npm-tarball-url/issues"
},
"homepage": "https://github.com/pnpm/get-npm-tarball-url#readme",
"devDependencies": {
"@types/jest": "^27.0.3",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsup": "^7.2.0",
"typescript": "^4.5.2"
}
}