2016-04-10 03:13:46 +00:00
|
|
|
{
|
|
|
|
"name": "caspar-sup",
|
|
|
|
"version": "1.0.0",
|
2016-04-10 08:37:05 +00:00
|
|
|
"description": "CasparCG superimposed graphics project",
|
2016-04-10 03:13:46 +00:00
|
|
|
"main": "index.js",
|
2020-04-06 22:47:58 +00:00
|
|
|
"type": "module",
|
2016-04-10 03:13:46 +00:00
|
|
|
"scripts": {
|
2020-04-06 22:47:58 +00:00
|
|
|
"js:build:main": "asbundle app/main/index.js public/main.js",
|
|
|
|
"js:build:client": "asbundle app/client/index.js public/client.js",
|
|
|
|
"js:build:status": "asbundle app/status/index.js public/status.js",
|
|
|
|
"js:watch": "nodemon --watch app --exec \"npm run build\"",
|
2020-12-08 11:09:46 +00:00
|
|
|
"start:watch": "nodemon --watch api --watch runner.mjs --watch index.mjs runner.mjs | bunyan",
|
2020-04-06 22:47:58 +00:00
|
|
|
"start": "node --experimental-modules index.mjs | bunyan -o short",
|
|
|
|
"dev": "run-p js:watch start:watch",
|
2020-12-08 11:09:46 +00:00
|
|
|
"build": "npm run js:build:main && npm run js:build:client && npm run js:build:status"
|
2016-04-10 03:13:46 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/nfp-projects/caspar-sup.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"Casparcg",
|
|
|
|
"superimposed",
|
|
|
|
"graphics"
|
|
|
|
],
|
|
|
|
"author": "Jonatan Nilsson",
|
|
|
|
"license": "WTFPL",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/nfp-projects/caspar-sup/issues"
|
|
|
|
},
|
2016-04-10 08:37:05 +00:00
|
|
|
"homepage": "https://github.com/nfp-projects/caspar-sup#readme",
|
|
|
|
"dependencies": {
|
2020-04-07 11:15:33 +00:00
|
|
|
"lodash": "^4.5.0",
|
2020-12-08 11:09:46 +00:00
|
|
|
"node-static-lib": "^1.0.0",
|
|
|
|
"p3x-xml2json": "^2020.10.131",
|
|
|
|
"socket.io-serveronly": "^2.3.0"
|
2016-04-10 08:37:05 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-04-07 10:36:11 +00:00
|
|
|
"asbundle": "^2.6.1",
|
2018-07-15 03:19:58 +00:00
|
|
|
"dragula": "^3.7.2",
|
2020-12-08 11:09:46 +00:00
|
|
|
"mithril": "^2.0.4",
|
|
|
|
"npm-run-all": "^4.1.2",
|
|
|
|
"service-core": "^2.0.0"
|
2016-04-10 08:37:05 +00:00
|
|
|
}
|
2016-04-10 03:13:46 +00:00
|
|
|
}
|