novy-syndicate/package.json

22 lines
618 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": {
2021-03-11 22:14:06 +00:00
"@preserves/core": "^0.9.1",
"@preserves/schema": "^0.2.1"
2021-03-02 12:53:33 +00:00
},
"scripts": {
"regenerate": "rm -rf ./src/gen && preserves-schema-ts --module Actor=./src/actor.ts --module Protocol=./src/protocol.ts --output ./src/gen './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-04 18:54:12 +00:00
"clean": "rm -rf lib index.js"
2021-02-17 19:57:15 +00:00
}
}