-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.71 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
{
"name": "streaming-metadata",
"version": "0.5.1",
"description": "Metadata widget for OBS' Browser Source",
"scripts": {
"postinstall": "npm run build:end-user",
"test": "start-server-and-test 5000 test:ci",
"test:ci": "echo Server started successfully",
"preversion": "npm test",
"version:major": "npm version major -m '🔖 %s'",
"version:minor": "npm version minor -m '🔖 %s'",
"version:patch": "npm version patch -m '🔖 %s'",
"postversion": "git push && git push --tags",
"prepack": "npm run build",
"build": "npm run build:mjs && npm run build:bundle",
"build:mjs": "npx snowpack && npx tsc",
"build:bundle": "npx snowpack --nomodule public/js/game-bug.js && shx cp -r web_modules public",
"build:end-user": "npx symlink-cli game-bug.html public/index.html",
"build:netlify": "npm run build && rm public/index.html && cp game-bug.html public/index.html",
"build:netlify:debug": "ls -al public && ls -al public/js && ls -al public/web_modules",
"start": "npx serve --symlinks -n -d -c serve.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chances/streaming-metadata.git"
},
"keywords": [
"obs",
"obs-browser-source",
"twitch",
"youtube"
],
"author": "Chance Snow <git@chancesnow.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/chances/streaming-metadata/issues"
},
"homepage": "https://github.com/chances/streaming-metadata#readme",
"dependencies": {
"@peculiar/json-schema": "^1.1.10",
"lit-html": "^1.2.1"
},
"devDependencies": {
"serve": "^11.3.0",
"shx": "^0.3.2",
"snowpack": "^1.7.1",
"start-server-and-test": "^1.11.0",
"typescript": "^3.8.3"
}
}