syndicate-js/packages/compiler/package.json

23 lines
771 B
JSON

{
"name": "@syndicate-lang/compiler",
"version": "0.2.0",
"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": {
"prepare": "yarn compile && yarn rollup",
"compile": "../../node_modules/.bin/tsc",
"compile:watch": "../../node_modules/.bin/tsc -w",
"rollup": "../../node_modules/.bin/rollup -c",
"rollup:watch": "../../node_modules/.bin/rollup -c -w"
},
"main": "dist/syndicate-compiler.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>"
}