forked from likun7981/hlink
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
73 lines (73 loc) · 1.95 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "hlink",
"version": "1.0.2",
"description": "hlink",
"license": "MIT",
"repository": "likun7981/hlink",
"author": {
"name": "likun7981",
"email": "[email protected]"
},
"bin": {
"hlink": "./lib/cli.js"
},
"type": "module",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && ava",
"dev": "npm run clean && tsc && npm run env && tsc -w",
"clean": "rm -rf lib",
"cp": "cp src/hlink.config.tpl lib/hlink.config.tpl",
"build": "npm run clean && tsc && npm run cp",
"prepublishOnly": "npm run build",
"env": "rm /usr/local/bin/hlink && ln -s $PWD/lib/cli-dev.js /usr/local/bin/hlink && chmod +x ./lib/cli-dev.js",
"np": "np --no-cleanup --no-tests --no-yarn",
"np:beta": "np --tag=beta --any-branch --no-cleanup --no-tests --no-yarn",
"np:next": "np --tag=next --any-branch --no-cleanup --no-tests --no-yarn",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"files": [
"lib"
],
"keywords": [
"cli",
"cli-app",
"unicorn",
"fun"
],
"dependencies": {
"@inquirer/confirm": "0.0.19-alpha.0",
"@types/update-notifier": "^5.1.0",
"ansi-escapes": "^5.0.0",
"chalk": "^5",
"chokidar": "^3.5.3",
"execa": "^6",
"fs-extra": "^10",
"meow": "^10.1.2",
"progress": "^2.0.3",
"update-notifier": "^5.1.0",
"wrap-ansi": "^8.0.1"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/meow": "^5.0.0",
"@types/single-line-log": "^1.1.0",
"@types/wrap-ansi": "^8.0.1",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"ava": "^4",
"eslint": "^8",
"eslint-config-standard-with-typescript": "^21.0.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"np": "^7.6.1",
"typescript": "^4.6.4",
"vitepress": "^0.22.4",
"vue": "^3.2.36",
"xo": "^0.24.0"
}
}