syndicate-js/packages/core/package.json

36 lines
1.3 KiB
JSON
Raw Normal View History

{
2018-11-01 14:55:45 +00:00
"name": "@syndicate-lang/core",
"version": "0.11.8",
2021-01-18 22:11:53 +00:00
"description": "Syndicate/JS for browser and node.js",
2021-12-13 12:38:28 +00:00
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/main/packages/core",
2018-11-01 14:55:45 +00:00
"license": "GPL-3.0+",
2018-11-01 15:39:19 +00:00
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://git.syndicate-lang.org/syndicate-lang/syndicate-js"
},
"scripts": {
2021-12-01 16:13:00 +00:00
"prepare": "yarn regenerate && yarn compile && yarn rollup",
"regenerate": "rm -rf ./src/gen && preserves-schema-ts --module EntityRef=./src/runtime/actor.ts --output ./src/gen './protocols/schemas' './local-protocols/schemas'",
2021-12-01 16:13:00 +00:00
"regenerate:watch": "yarn regenerate --watch",
2021-01-18 22:11:53 +00:00
"compile": "../../node_modules/.bin/tsc",
2021-04-26 13:13:30 +00:00
"compile:watch": "../../node_modules/.bin/tsc -w",
2021-01-17 13:14:02 +00:00
"rollup": "../../node_modules/.bin/rollup -c",
2021-04-26 13:13:30 +00:00
"rollup:watch": "../../node_modules/.bin/rollup -c -w",
"test": "../../node_modules/.bin/jest",
2022-01-26 16:05:40 +00:00
"cover": "../../node_modules/.bin/nyc --reporter=html ../../node_modules/.bin/jest",
"clean": "rm -rf lib dist",
"veryclean": "yarn run clean && rm -rf node_modules"
},
2021-01-17 13:14:02 +00:00
"main": "dist/syndicate.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
2018-11-01 14:55:45 +00:00
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"dependencies": {
"@preserves/core": ">=0.20.2",
"@preserves/schema": ">=0.21.2"
}
}