novy-syndicate/package.json

23 lines
669 B
JSON
Raw Normal View History

2021-02-17 19:57:15 +00:00
{
"devDependencies": {
2021-03-02 08:50:23 +00:00
"@types/node": "^14.14.31",
"esm": "^3.2.25",
2021-03-04 18:54:12 +00:00
"rollup": "^2.40.0",
"typescript": "^4.2.3"
2021-02-17 19:57:15 +00:00
},
"dependencies": {
"@preserves/core": "^0.17.0",
"@preserves/schema": "^0.16.0"
2021-03-02 12:53:33 +00:00
},
"scripts": {
2021-10-11 10:55:45 +00:00
"regenerate": "rm -rf ./src/gen && preserves-schema-ts --module EntityRef=./src/runtime/actor.ts --output ./src/gen './protocols/schemas/**/*.prs'",
2021-03-11 17:00:45 +00:00
"regenerate:watch": "yarn regenerate --watch",
"compile": "tsc",
"compile:watch": "tsc -w",
"rollup": "rollup -c",
"rollup:watch": "rollup -c -w",
2021-03-12 19:49:18 +00:00
"clean": "rm -rf lib index.js",
2021-10-11 10:55:45 +00:00
"build": "yarn regenerate && yarn compile && yarn rollup"
2021-02-17 19:57:15 +00:00
}
}