syndicate-js/packages/html/package.json

36 lines
1.1 KiB
JSON
Raw Normal View History

2021-01-25 21:19:41 +00:00
{
"name": "@syndicate-lang/html",
"version": "0.11.11",
2021-01-25 21:19:41 +00:00
"description": "DOM/HTML UI for Syndicate/JS",
2021-12-13 12:38:28 +00:00
"homepage": "https://github.com/syndicate-lang/syndicate-js/tree/main/packages/html",
2021-01-25 21:19:41 +00:00
"license": "GPL-3.0+",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://git.syndicate-lang.org/syndicate-lang/syndicate-js"
},
2021-01-25 21:19:41 +00:00
"main": "dist/syndicate-html.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Tony Garnock-Jones <tonyg@leastfixedpoint.com>",
"scripts": {
2021-04-26 13:13:30 +00:00
"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",
2022-01-26 16:05:40 +00:00
"clean": "rm -rf lib/ dist/ index.js index.js.map",
"veryclean": "yarn run clean && rm -rf node_modules"
2021-01-25 21:19:41 +00:00
},
"dependencies": {
"@syndicate-lang/core": "^0.11.8"
2021-01-25 21:19:41 +00:00
},
"devDependencies": {
"@syndicate-lang/syndicatec": "^0.11.9",
"@syndicate-lang/ts-plugin": "^0.11.9",
"@syndicate-lang/tsc": "^0.11.9"
2021-01-25 21:19:41 +00:00
}
}