/
githubmirror
/
solid
Обзор
Документация
Войти
/
githubmirror
/
solid
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
v2.0.0-beta.0
packages/solid-h/package.json
65 строк
2 KB
Ryan Carniato
v2.0.0-beta.0: move pre-release tag from experimental to beta
04 мар 2026, 01:21
04 мар 2026, 01:21
ad7d1f5
Код
Авторство
О чём код?
{ "name": "@solidjs/h", "description": "A standard (less-optimal) JSX factory for Solid", "version": "2.0.0-beta.0", "author": "Ryan Carniato", "license": "MIT", "homepage": "https://solidjs.com", "repository": { "type": "git", "url": "https://github.com/solidjs/solid-h" }, "publishConfig": { "access": "public" }, "main": "./dist/h.cjs", "module": "./dist/h.js", "types": "./types/index.d.ts", "type": "module", "sideEffects": false, "files": [ "dist", "types", "package.json", "jsx-runtime/dist", "jsx-runtime/types", "jsx-runtime/package.json", "jsx-dev-runtime/package.json" ], "exports": { ".": { "types": "./types/index.d.ts", "import": "./dist/h.js", "require": "./dist/h.cjs" }, "./jsx-runtime": { "types": "./jsx-runtime/types/index.d.ts", "import": "./jsx-runtime/dist/jsx.js", "require": "./jsx-runtime/dist/jsx.cjs" }, "./jsx-dev-runtime": { "types": "./jsx-runtime/types/index.d.ts", "import": "./jsx-runtime/dist/jsx.js", "require": "./jsx-runtime/dist/jsx.cjs" }, "./dist/*": "./dist/*", "./types/*": "./types/*" }, "scripts": { "build": "npm-run-all -nl build:*", "build:clean": "rimraf dist/ coverage/ /jsx-runtime/dist", "build:js": "rollup -c", "types": "npm-run-all -nl types:*", "types:clean": "rimraf types/", "types:copy": "ncp ../../node_modules/dom-expressions/src/jsx-h.d.ts ./jsx-runtime/src/jsx.d.ts", "types:h": "tsc --project ./tsconfig.json && ncp ../../node_modules/hyper-dom-expressions/types/index.d.ts ./types/hyperscript.d.ts", "types:jsx": "rimraf ./jsx-runtime/types && tsc --project ./jsx-runtime/tsconfig.json && ncp ../../node_modules/dom-expressions/src/jsx-h.d.ts ./jsx-runtime/types/jsx.d.ts", "link": "symlink-dir . node_modules/@solidjs/h" }, "peerDependencies": { "@solidjs/web": "^2.0.0-beta.0" }, "devDependencies": { "@solidjs/web": "workspace:*" } }