syndicate-js/packages/tsc/package.json

39 lines
1.0 KiB
JSON
Raw Normal View History

2021-01-23 22:38:00 +00:00
{
"name": "@syndicate-lang/tsc",
"version": "0.11.9",
2021-01-23 22:38:00 +00:00
"description": "Syndicate for TypeScript compiler command-line tool",
2021-12-13 12:38:28 +00:00
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/main/packages/tsc",
2021-01-23 22:38:00 +00:00
"license": "GPL-3.0+",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://git.syndicate-lang.org/syndicate-lang/syndicate-js"
},
2021-01-23 22:38:00 +00:00
"scripts": {
2021-04-26 13:13:30 +00:00
"prepare": "yarn compile",
2021-01-25 21:14:15 +00:00
"compile": "../../node_modules/.bin/tsc",
2022-01-26 16:05:40 +00:00
"compile:watch": "../../node_modules/.bin/tsc -w",
"clean": "rm -rf lib",
"veryclean": "yarn run clean && rm -rf node_modules"
2021-01-23 22:38:00 +00:00
},
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"dependencies": {
"@syndicate-lang/compiler": "^0.11.5",
"@syndicate-lang/core": "^0.11.8",
2021-01-23 22:38:00 +00:00
"glob": "^7.1.6",
"yargs": "^16.2.0"
},
"bin": {
"syndicate-tsc": "./bin/syndicate-tsc.js"
},
"devDependencies": {
"@types/yargs": "^15.0.12",
"typescript": "^4.5"
2021-01-23 22:38:00 +00:00
},
"peerDependencies": {
"typescript": "^4.5"
2021-01-23 22:38:00 +00:00
}
}