UNPKG

hyperscript.org

Version:

a small scripting language for the web

73 lines (72 loc) 2.62 kB
{ "name": "hyperscript.org", "description": "a small scripting language for the web", "keywords": [ "scripting", "HTML" ], "version": "0.9.91", "type": "module", "homepage": "https://hyperscript.org/", "bugs": { "url": "https://github.com/bigskysoftware/_hyperscript/issues" }, "license": "BSD 2-Clause", "files": [ "LICENSE", "README.md", "dist/*" ], "main": "dist/_hyperscript.js", "module": "dist/_hyperscript.js", "types": "dist/_hyperscript.d.ts", "exports": { ".": "./dist/_hyperscript.js", "./ext/*": "./dist/ext/*" }, "bin": { "hyperscript.org": "dist/platform/node-hyperscript.js" }, "scripts": { "build": "node build.config.mjs", "build:watch": "node build.config.mjs --watch", "test": "playwright test --config test/playwright.config.js --project=chromium", "test:all": "playwright test --config test/playwright.config.js", "test:coverage": "COVERAGE=1 playwright test --config test/playwright.config.js --project=chromium", "dist": "npm run build && npm run typings", "typings": "npx tsc --declaration dist/_hyperscript.js --allowJs --emitDeclarationOnly --skipLibCheck", "www": "npm run build && cp -r dist/* www/js/", "www:search": "cd www && npx @11ty/eleventy && npx pagefind --site _site", "www:serve": "cd www && npx @11ty/eleventy --serve", "test:workers": "npx serve . -l 3000 -s & echo 'Open http://localhost:3000/test/manual/workers.html'", "scratch": "node test/global-setup.js && open test/scratch.html", "scratch:build": "node test/global-setup.js", "test:manual": "node test/manual/server.js", "test:connections": "node test/manual/server.js", "update-debug-plugin": "npm run build && cp dist/_hyperscript.js debug-plugin/vendor/_hyperscript.js", "update-sha": "bash scripts/update-sha.sh", "release-check": "node scripts/release-check.mjs" }, "repository": { "type": "git", "url": "git+https://github.com/bigskysoftware/_hyperscript.git" }, "devDependencies": { "@11ty/eleventy": "^3.1.2", "@11ty/eleventy-plugin-syntaxhighlight": "^5.0.2", "@playwright/test": "^1.58.2", "esbuild": "^0.27.4", "istanbul-lib-coverage": "^3.2.2", "istanbul-lib-instrument": "^6.0.3", "istanbul-lib-report": "^3.0.1", "istanbul-reports": "^3.2.0", "markdown-it": "^12.3.2", "markdown-it-anchor": "^8.4.1", "markdown-it-attrs": "^4.1.3", "markdown-it-deflist": "^2.1.0", "markdown-it-table-of-contents": "^0.6.0", "pagefind": "^1.4.0", "serve": "^14.2.6", "terser": "^5.14.1" } }