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

28 lines
811 B
JSON
Raw Normal View History

2021-01-26 21:10:41 +00:00
{
2021-12-10 13:40:03 +00:00
"name": "@syndicate-lang/syndicate-html-example-table",
2021-05-17 14:29:26 +00:00
"private": true,
"description": "Simple HTML UI Syndicate example",
2021-01-26 21:10:41 +00:00
"main": "index.js",
"scripts": {
2021-04-26 13:13:30 +00:00
"prepare": "yarn compile && yarn rollup",
"compile": "syndicate-tsc",
2021-12-09 21:15:47 +00:00
"compile:watch": "syndicate-tsc -w --verbose --intermediate-directory src.ts",
2021-04-26 13:13:30 +00:00
"rollup": "rollup -c",
2021-12-09 21:15:47 +00:00
"rollup:watch": "rollup -c -w",
2021-01-26 21:10:41 +00:00
"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": "*"
2021-01-26 21:10:41 +00:00
},
"devDependencies": {
"@syndicate-lang/ts-plugin": "*",
"@syndicate-lang/tsc": "*",
2021-12-10 13:40:03 +00:00
"rollup": "^2.60",
"rollup-plugin-sourcemaps": "^0.6",
2023-02-04 11:17:20 +00:00
"typescript": "^4.9"
2021-01-26 21:10:41 +00:00
}
}