-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.7 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.7 KB
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
{
"name": "twitch-overlay",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "ts-node node_modules/jasmine/bin/jasmine",
"build": "npm test && tsc && npm run build-emote-widget && npm run build-physics-widget && npm run build-keyboard-widget && npm run copy-html-css-node && npm run copy-root-files",
"copy-html-css-node": "copyfiles -u 1 src/**/*.html src/**/*.css src/**/*.node build",
"copy-root-files": "copyfiles -f README.md LICENSE Arena.ttf .gitignore build",
"build-emote-widget": "browserify src/overlay-widgets/emote-widget/index.ts -p [ tsify --noImplicityAny ] > build/overlay-widgets/emote-widget/emote-widget-bundle.js",
"build-physics-widget": "browserify src/overlay-widgets/physics/physics-engine.ts -p [ tsify --noImplicityAny ] > build/overlay-widgets/physics/physics-bundle.js",
"build-keyboard-widget": "browserify src/overlay-widgets/keyboard-widget/index.ts -p [ tsify --noImplicityAny ] > build/overlay-widgets/keyboard-widget/keyboard-bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Treee/twitch-overlay.git"
},
"author": "",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Treee/twitch-overlay/issues"
},
"homepage": "https://github.com/Treee/twitch-overlay#readme",
"dependencies": {
"@types/bindings": "^1.3.0",
"bindings": "^1.5.0",
"ws": "^7.2.0"
},
"devDependencies": {
"@types/express": "^4.17.3",
"@types/jasmine": "^3.4.6",
"@types/jquery": "^3.3.31",
"@types/ws": "^6.0.3",
"browserify": "^16.5.0",
"copyfiles": "^2.1.1",
"jasmine": "^3.5.0",
"ts-node": "^8.4.1",
"tsify": "^4.0.1",
"typescript": "^3.7.2"
}
}