-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 2.39 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
{
"name": "sdpi-components",
"version": "3.0.1",
"description": "Web components for your Stream Deck plugin; take the hassle out of the property inspector.",
"main": "./dist/sdpi-components.js",
"scripts": {
"build": "rollup -c && rollup -c --dev && npm run install:example",
"format": "prettier './src/**/*.ts' --write",
"install:example": "node ./scripts/install-example.js",
"lint": "eslint . --ext .ts",
"test": "jest --verbose",
"test:ci": "jest --verbose --coverage && node ./scripts/coverage-badge.js",
"preversion": "jest",
"version": "rollup -c && git add -A dist package* example/pi",
"watch": "rollup -c -w & npm run watch:example",
"watch:example": "onchange './example/**/*.*' -e './example/**/*.js' -- npm run install:example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GeekyEggo/sdpi-components.git"
},
"keywords": [
"stream-deck",
"stream",
"deck",
"property-inspector"
],
"author": "Elgato",
"license": "MIT",
"bugs": {
"url": "https://github.com/GeekyEggo/sdpi-components/issues"
},
"homepage": "https://sdpi-components.dev",
"prettier": "@elgato/prettier-config",
"dependencies": {
"@lit-labs/task": "^2.0.0",
"lit": "^2.2.3"
},
"devDependencies": {
"@elgato/prettier-config": "^0.2.2",
"@rollup/plugin-commonjs": "^23.0.0",
"@rollup/plugin-node-resolve": "^15.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/babel__core": "^7.1.19",
"@types/jest": "^29.1.2",
"@typescript-eslint/eslint-plugin": "^5.24.0",
"@typescript-eslint/parser": "^5.24.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"fs-extra": "^10.0.1",
"jest": "^29.1.2",
"jest-environment-jsdom": "^29.1.2",
"jest-websocket-mock": "^2.3.0",
"onchange": "^7.1.0",
"prettier": "^3.3.3",
"prettier-plugin-multiline-arrays": "^3.0.6",
"rollup": "^3.1.0",
"rollup-plugin-minify-html-literals": "^1.2.6",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.6.4"
}
}