syndicate-js/packages/compiler/package.json

23 lines
771 B
JSON
Raw Permalink Normal View History

2021-01-18 22:11:53 +00:00
{
"name": "@syndicate-lang/compiler",
"version": "0.2.0",
2021-01-18 22:11:53 +00:00
"description": "Syndicate/JS compiler library",
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/master/packages/compiler",
"license": "GPL-3.0+",
"publishConfig": {
"access": "public"
},
"repository": "github:syndicate-lang/syndicate-js",
"scripts": {
2021-04-26 13:13:30 +00:00
"prepare": "yarn compile && yarn rollup",
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-25 21:14:15 +00:00
"rollup": "../../node_modules/.bin/rollup -c",
2021-04-26 13:13:30 +00:00
"rollup:watch": "../../node_modules/.bin/rollup -c -w"
2021-01-18 22:11:53 +00:00
},
"main": "dist/syndicate-compiler.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>"
}