forked from alhazmy13/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.72 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
{
"name": "@stream-deck-for-node/cli",
"version": "1.0.8",
"author": "Francesco Saverio Cannizzaro (fcannizzaro)",
"main": "./dist/index.js",
"exports": "./dist/index.js",
"type": "module",
"description": "CLI for Node.js stream deck plugins development",
"license": "MIT",
"scripts": {
"build": "npx tsc -outDir dist",
"build:watch": "npx tsc --watch -outDir dist"
},
"publishConfig": {
"access": "public"
},
"bin": {
"stream-deck": "dist/index.js"
},
"keywords": [
"stream-deck",
"stream-deck-plugin",
"cli",
"elgato"
],
"files": [
"src",
"dist",
"elgato-bin",
"boilerplate",
"package.json",
"README.md",
"LICENSE",
"tsconfig.json"
],
"homepage": "https://stream-deck-for-node.netlify.app/#/cli",
"repository": "github:stream-deck-for-node-js/cli",
"dependencies": {
"chalk": "^4.0.0",
"command-exists": "^1.2.9",
"command-line-args": "^5.2.0",
"command-line-usage": "^6.1.1",
"fkill": "^8.0.0",
"fs-extra": "^10.0.0",
"got": "^12.0.0",
"inquirer": "^8.2.0",
"lodash.pick": "^4.4.0",
"log-symbols": "^5.1.0",
"mustache": "^4.2.0",
"ora": "^6.1.0",
"symlink-dir": "^5.0.1"
},
"devDependencies": {
"@types/command-exists": "^1.2.0",
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/fs-extra": "^9.0.13",
"@types/inquirer": "^8.1.3",
"@types/lodash.pick": "^4.4.6",
"@types/mustache": "^4.1.2",
"@types/node": "^17.0.5",
"@types/unzipper": "^0.10.5",
"@typescript-eslint/eslint-plugin": "^5.8.1",
"@typescript-eslint/parser": "^5.8.1",
"eslint": "^8.5.0",
"prettier": "^2.5.1",
"typescript": "^4.5.4"
}
}