-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "link",
"version": "0.0.0-semantic-release",
"description": "A better npm link",
"keywords": [
"npm",
"link",
"symlink"
],
"license": "MIT",
"repository": "privatenumber/link",
"funding": "https://github.com/privatenumber/link?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"files": [
"dist"
],
"bin": "dist/cli.js",
"packageManager": "[email protected]",
"scripts": {
"build": "pkgroll --minify",
"test": "tsx tests/index.ts",
"dev": "tsx watch tests/index.ts",
"lint": "lintroll --cache --ignore-pattern=tests/fixtures .",
"type-check": "tsc",
"prepack": "pnpm build && clean-pkg-json"
},
"devDependencies": {
"@types/cmd-shim": "^5.0.2",
"@types/node": "^20.14.14",
"@types/npm-packlist": "^7.0.3",
"@types/npmcli__package-json": "^4.0.4",
"clean-pkg-json": "^1.2.0",
"cleye": "^1.3.2",
"cmd-shim": "^6.0.3",
"execa": "^8.0.1",
"fs-fixture": "^2.4.0",
"get-node": "^15.0.1",
"kolorist": "^1.8.0",
"lintroll": "^1.7.1",
"manten": "^1.3.0",
"npm-packlist": "^8.0.2",
"outdent": "^0.8.0",
"pkgroll": "^2.4.2",
"tsx": "^4.16.5",
"typescript": "^5.5.4"
}
}