-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
55 lines (55 loc) · 1.73 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
{
"name": "streamdeck-typescript",
"version": "3.2.1",
"description": "This library will help you build elgato stream deck plugins in typescript",
"homepage": "https://github.com/XeroxDev/Stream-Deck-TS-SDK",
"license": "MIT",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"author": {
"email": "[email protected]",
"name": "Dominic 'XeroxDev' Ris",
"url": "https://github.com/XeroxDev"
},
"bugs": {
"url": "https://github.com/XeroxDev/Stream-Deck-TS-SDK/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/XeroxDev/Stream-Deck-TS-SDK.git"
},
"keywords": [
"Stream Deck",
"Elgato",
"TypeScript",
"Library"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"build-example": "browserify -p tsify example/counter-pi.ts | terser -cm --comments false -o dist/bundle-pi.js && browserify -p tsify example/counter.ts | terser -cm --comments false -o dist/bundle.js",
"watch": "start watchify --debug -p tsify example/counter.ts -o dist/bundle.js && start watchify --debug -p tsify example/counter-pi.ts -o dist/bundle-pi.js",
"release": "standard-version --sign --commit-all",
"documentation": "typedoc src/index.ts"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"private": false,
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@tsconfig/recommended": "^1.0.1",
"browserify": "^17.0.0",
"husky": "^3.1.0",
"pinst": "^2.1.6",
"standard-version": "^9.3.0",
"terser": "^5.7.0",
"tsify": "^5.0.4",
"typedoc": "^0.20.36",
"typescript": "4.2.3",
"watchify": "^4.0.0"
}
}