marko/packages/runtime/package.json
2023-05-16 15:04:36 -07:00

31 lines
676 B
JSON

{
"name": "@marko/runtime-fluurt",
"version": "0.0.1",
"private": true,
"description": "Optimized runtime for Marko templates.",
"keywords": [
"fluurt",
"marko",
"runtime"
],
"homepage": "https://github.com/marko-js/x",
"bugs": "https://github.com/marko-js/x/issues",
"repository": {
"type": "git",
"url": "https://github.com/marko-js/x"
},
"license": "MIT",
"files": [
"dist",
"!**/__tests__",
"!**/meta.*.json",
"!**/*.tsbuildinfo"
],
"scripts": {
"build": "npm run build:types && npm run build:js",
"build:js": "tsx build.mts",
"build:types": "tsc -b",
"prepublishOnly": "npm run build"
}
}