syndicate-js/packages/compiler/package.json

28 lines
920 B
JSON
Raw Normal View History

2021-01-18 22:11:53 +00:00
{
"name": "@syndicate-lang/compiler",
"version": "0.11.5",
2021-01-18 22:11:53 +00:00
"description": "Syndicate/JS compiler library",
2021-12-13 12:38:28 +00:00
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/main/packages/compiler",
2021-01-18 22:11:53 +00:00
"license": "GPL-3.0+",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://git.syndicate-lang.org/syndicate-lang/syndicate-js"
},
2021-01-18 22:11:53 +00:00
"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",
2022-01-26 16:05:40 +00:00
"rollup:watch": "../../node_modules/.bin/rollup -c -w",
"clean": "rm -rf lib dist",
"veryclean": "yarn run clean && rm -rf node_modules"
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>"
}