-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.74 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
{
"name": "@elgato/schemas",
"version": "0.3.9",
"description": "Collection of schemas, and TypeScript declarations, to support the creation and validation of Stream Deck SDK files",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"default": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./streamdeck/plugins": {
"default": "./dist/streamdeck/plugins/index.js",
"import": "./dist/streamdeck/plugins/index.mjs",
"types": "./dist/streamdeck/plugins/index.d.ts"
},
"./streamdeck/plugins/json": {
"default": "./dist/streamdeck/plugins/json.js",
"import": "./dist/streamdeck/plugins/json.mjs",
"types": "./dist/streamdeck/plugins/json.d.ts"
},
"./streamdeck/plugins/layout.json": {
"default": "./streamdeck/plugins/layout.json"
},
"./streamdeck/plugins/manifest.json": {
"default": "./streamdeck/plugins/manifest.json"
}
},
"files": [
"dist/",
"streamdeck/"
],
"scripts": {
"build": "npm run clean && npm run build:schemas && npm run build:exports",
"build:schemas": "node -r @swc-node/register ./scripts/build.ts",
"build:exports": "rollup --config rollup.config.ts --configPlugin typescript",
"clean": "rm -rf ./dist/ && rm -rf ./streamdeck/",
"lint": "eslint . --ext .ts --max-warnings 0",
"preversion": "npm run lint",
"test": "npm run build:schemas && jest",
"test:ci": "jest",
"test:watch": "nodemon --watch src --ext ts --exec \"npm run test\"",
"version": "npm run build && npm run test:ci"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elgatosf/schemas.git"
},
"keywords": [
"elgato",
"stream deck",
"sdk",
"json",
"schemas"
],
"author": {
"name": "Elgato",
"url": "https://www.elgato.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/elgatosf/schemas/issues"
},
"homepage": "https://github.com/elgatosf/schemas#readme",
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.2",
"@rollup/plugin-typescript": "^11.1.5",
"@swc-node/register": "^1.8.0",
"@swc/core": "^1.4.11",
"@swc/jest": "^0.2.36",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node20": "^20.1.2",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.14.202",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "^6.7.4",
"@typescript-eslint/parser": "^6.7.4",
"ajv": "^8.12.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jsdoc": "^46.8.2",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"rollup": "^4.0.2",
"rollup-plugin-dts": "^6.1.0",
"ts-json-schema-generator": "^1.5.0",
"typescript": "^5.3.3"
}
}