-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 840 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 840 Bytes
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
{
"name": "simple-plugin",
"version": "1.0.0",
"license": "MIT",
"main": "src/index.ts",
"icon": "assets/img/icon.png",
"identifier": "ch.studimax.simple-plugin",
"actions": {
"test-a": {
"name": "Test 1",
"icon": "assets/img/actions/test.png"
},
"test-b": {
"name": "Test 2",
"icon": "assets/img/actions/test.png"
}
},
"scripts": {
"serve": "ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"package": "streamboard-cli build"
},
"dependencies": {
"streamboard-sdk": "^1.6.1"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"engines": {
"node": ">=14.16.0"
}
}