syndicate-js/examples/syndicate-html-example-table/package.json

28 lines
811 B
JSON

{
"name": "@syndicate-lang/syndicate-html-example-table",
"private": true,
"description": "Simple HTML UI Syndicate example",
"main": "index.js",
"scripts": {
"prepare": "yarn compile && yarn rollup",
"compile": "syndicate-tsc",
"compile:watch": "syndicate-tsc -w --verbose --intermediate-directory src.ts",
"rollup": "rollup -c",
"rollup:watch": "rollup -c -w",
"clean": "rm -rf lib/ index.js index.js.map"
},
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"license": "GPL-3.0+",
"dependencies": {
"@syndicate-lang/core": "*",
"@syndicate-lang/html": "*"
},
"devDependencies": {
"@syndicate-lang/ts-plugin": "*",
"@syndicate-lang/tsc": "*",
"rollup": "^2.60",
"rollup-plugin-sourcemaps": "^0.6",
"typescript": "^4.9"
}
}