-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.1 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
{
"name": "open-npm-link-cli",
"version": "1.0.0",
"description": "Open a npm link for target package",
"homepage": "https://github.com/yyz945947732/open-npm-link-cli",
"scripts": {
"start": "node ./bin/index.js",
"lint": "biome check --apply-unsafe ./lib && biome format --write ./lib"
},
"bin": {
"onpm": "./bin/index.js"
},
"keywords": [
"cli",
"open-cli",
"npm",
"npmlink",
"package",
"open",
"opener",
"opens",
"launch",
"browser",
"website"
],
"type": "module",
"author": "yyz945947732 <945947732@qq.com>",
"license": "MIT",
"files": [
"bin",
"lib"
],
"bugs": {
"url": "https://github.com/yyz945947732/open-npm-link-cli/issues",
"email": "945947732@qq.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yyz945947732/open-npm-link-cli.git"
},
"dependencies": {
"fs-extra": "^11.1.1",
"open-npm-link": "^1.0.2",
"update-notifier": "^6.0.2",
"yargs-parser": "^21.1.1"
},
"devDependencies": {
"@biomejs/biome": "^1.1.2",
"@types/fs-extra": "^11.0.1"
}
}