mirror of
https://github.com/kennethnym/jrx.git
synced 2026-03-19 19:31:17 +00:00
52 lines
1.2 KiB
JSON
52 lines
1.2 KiB
JSON
{
|
|
"name": "jfx",
|
|
"version": "0.1.0",
|
|
"license": "MIT",
|
|
"description": "JSX factory for json-render. Write JSX, get Spec JSON.",
|
|
"type": "module",
|
|
"main": "./dist/index.cjs",
|
|
"module": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.cjs"
|
|
},
|
|
"./jsx-runtime": {
|
|
"types": "./dist/jsx-runtime.d.ts",
|
|
"import": "./dist/jsx-runtime.js",
|
|
"require": "./dist/jsx-runtime.cjs"
|
|
},
|
|
"./jsx-dev-runtime": {
|
|
"types": "./dist/jsx-dev-runtime.d.ts",
|
|
"import": "./dist/jsx-dev-runtime.js",
|
|
"require": "./dist/jsx-dev-runtime.cjs"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"dev": "tsup --watch",
|
|
"test": "bun test",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"peerDependencies": {
|
|
"@json-render/core": ">=0.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@json-render/core": "0.10.0",
|
|
"@json-render/react": "0.10.0",
|
|
"@testing-library/react": "16.3.2",
|
|
"@types/bun": "^1.3.9",
|
|
"@types/react": "19.2.3",
|
|
"happy-dom": "18.0.1",
|
|
"react": "19.2.4",
|
|
"react-dom": "19.2.4",
|
|
"tsup": "8.5.1",
|
|
"typescript": "5.9.3"
|
|
}
|
|
}
|