syndicate-js/packages/html/package.json

32 lines
996 B
JSON
Raw Normal View History

2021-01-25 21:19:41 +00:00
{
"name": "@syndicate-lang/html",
"version": "0.11.4",
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": "github:syndicate-lang/syndicate-js",
"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",
2021-01-25 21:19:41 +00:00
"clean": "rm -rf lib/ dist/ index.js index.js.map"
},
"dependencies": {
"@syndicate-lang/core": "^0.11.3"
2021-01-25 21:19:41 +00:00
},
"devDependencies": {
"@syndicate-lang/syndicatec": "^0.11.4",
"@syndicate-lang/ts-plugin": "^0.11.4",
"@syndicate-lang/tsc": "^0.11.4"
2021-01-25 21:19:41 +00:00
}
}