-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
95 lines (95 loc) · 2.94 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@elgato/cli",
"version": "1.0.1",
"description": "Stream Deck CLI tool for building with Stream Deck.",
"bin": {
"streamdeck": "bin/streamdeck.mjs",
"sd": "bin/streamdeck.mjs"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"./{bin,dist}/*.{js,cjs,mjs}",
"./{bin,dist}/*.d.{cts,ts}",
"./template"
],
"engines": {
"node": ">=20.1.0"
},
"scripts": {
"build": "npm run build:bin && npm run build:exports",
"build:bin": "rm -rf ./dist && rollup --config rollup.config.ts --configPlugin typescript",
"build:exports": "tsup",
"watch": "npm run watch:bin & npm run watch:exports",
"watch:bin": "rollup --config rollup.config.ts --configPlugin typescript --watch",
"watch:exports": "tsup --watch",
"lint": "eslint . --ext .ts --max-warnings 0",
"lint:fix": "prettier \"./src/**/*.ts\" --write",
"preversion": "npm run lint",
"version": "npm run build"
},
"prettier": "@elgato/prettier-config",
"repository": {
"type": "git",
"url": "git+https://github.com/elgatosf/cli.git"
},
"keywords": [
"elgato",
"stream deck",
"plugin",
"cli",
"marketplace",
"maker"
],
"author": {
"name": "Elgato",
"url": "https://www.elgato.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/elgatosf/cli/issues"
},
"homepage": "https://github.com/elgatosf/cli#readme",
"dependencies": {
"@elgato/schemas": "^0.4.0",
"@humanwhocodes/momoa": "^3.0.0",
"@zip.js/zip.js": "^2.7.34",
"ajv": "^8.12.0",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"ejs": "^3.1.10",
"find-process": "^1.4.7",
"ignore": "^5.3.1",
"inquirer": "^9.2.11",
"is-interactive": "^2.0.0",
"lodash": "^4.17.21",
"log-symbols": "^5.1.0",
"rage-edit": "^1.2.0",
"semver": "^7.6.0",
"tar": "^7.0.1"
},
"devDependencies": {
"@elgato/prettier-config": "^0.2.1",
"@rollup/plugin-commonjs": "^25.0.5",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@tsconfig/node20": "^20.1.2",
"@types/ejs": "^3.1.3",
"@types/inquirer": "^9.0.3",
"@types/lodash": "^4.14.199",
"@types/node": "^20.8.10",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^5.0.0",
"rollup": "^4.0.2",
"tslib": "^2.6.2",
"tsup": "^8.1.0",
"typescript": "^5.2.2"
}
}