-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
96 lines (96 loc) · 2.97 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
96
{
"name": "@elgato/cli",
"version": "1.1.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.1",
"@humanwhocodes/momoa": "^3.0.0",
"@zip.js/zip.js": "^2.7.54",
"ajv": "^8.17.1",
"chalk": "^5.4.1",
"commander": "^13.0.0",
"ejs": "^3.1.10",
"find-process": "^1.4.10",
"ignore": "^7.0.3",
"inquirer": "^12.3.2",
"is-interactive": "^2.0.0",
"lodash": "^4.17.21",
"log-symbols": "^7.0.0",
"rage-edit": "^1.2.0",
"semver": "^7.6.3",
"tar": "^7.4.3"
},
"devDependencies": {
"@elgato/prettier-config": "^0.2.4",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.2",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@tsconfig/node20": "^20.1.4",
"@types/ejs": "^3.1.5",
"@types/inquirer": "^9.0.7",
"@types/lodash": "^4.17.14",
"@types/node": "^22.10.7",
"@types/semver": "^7.5.8",
"@typescript-eslint/eslint-plugin": "^8.20.0",
"@typescript-eslint/parser": "^8.20.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-jsdoc": "^50.6.1",
"eslint-plugin-prettier": "^5.2.2",
"rollup": "^4.30.1",
"tslib": "^2.8.1",
"tsup": "^8.3.5",
"typescript": "^5.7.3"
}
}