-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 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
52
53
54
55
56
{
"name": "lls-cli",
"version": "1.0.6",
"description": "list node-script and execute it",
"type": "module",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": "./build/index.js"
},
"bin": {
"lls": "build/index.js"
},
"engines": {
"node": ">= 16.0.0"
},
"scripts": {
"fmt": "prettier --write .",
"dev": "tsc -w --project tsconfig.json",
"build": "tsc --project tsconfig.json"
},
"keywords": [
"lls",
"cli",
"lls-cli",
"script list",
"node script"
],
"author": "Vincent.W",
"license": "MIT",
"dependencies": {
"fs-extra": "^10.1.0",
"prompts": "^2.4.2",
"zx": "^7.1.1"
},
"devDependencies": {
"@types/prompts": "^2.4.1",
"prettier": "^2.7.1"
},
"files": [
"build"
],
"prettier": {
"semi": false,
"singleQuote": true,
"endOfLine": "lf"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kingzez/lls-cli.git"
},
"bugs": {
"url": "https://github.com/kingzez/lls-cli/issues"
},
"homepage": "https://github.com/kingzez/lls-cli#readme"
}