rynex
Version:
A minimalist TypeScript framework for building reactive web applications with no virtual DOM
113 lines • 2.8 kB
JSON
{
"name": "rynex",
"version": "0.1.60",
"description": "A minimalist TypeScript framework for building reactive web applications with no virtual DOM",
"main": "dist/runtime/index.js",
"types": "dist/runtime/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
},
"./runtime": {
"types": "./dist/runtime/index.d.ts",
"import": "./dist/runtime/index.js"
},
"./helpers": {
"types": "./dist/runtime/helpers/index.d.ts",
"import": "./dist/runtime/helpers/index.js"
},
"./state": {
"types": "./dist/runtime/state.d.ts",
"import": "./dist/runtime/state.js"
},
"./dom": {
"types": "./dist/runtime/dom.d.ts",
"import": "./dist/runtime/dom.js"
},
"./browsers": {
"types": "./dist/runtime/browsers.d.ts",
"import": "./dist/runtime/browsers.js"
}
},
"bin": {
"rynex": "./dist/cli/bin/rynex.js"
},
"files": [
"dist",
"templates",
"README.md",
"LICENSE"
],
"scripts": {
"build:framework": "tsc",
"lint": "oxlint .",
"lint:fix": "oxlint --fix .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"build": "pnpm lint && pnpm test && pnpm build:framework && node dist/cli/bin/rynex.js build",
"dev": "pnpm build:framework && node dist/cli/bin/rynex.js dev",
"watch": "tsc --watch",
"prepublishOnly": "pnpm build:framework",
"type-check": "tsc --noEmit"
},
"keywords": [
"framework",
"reactive",
"ui",
"minimalist",
"rynex",
"typescript",
"vanilla-js",
"no-virtual-dom",
"proxy-based",
"state-management",
"web-framework",
"rust-powered",
"rolldown"
],
"author": "razen-core",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/razen-core/rynex.git"
},
"bugs": {
"url": "https://github.com/razen-core/rynex/issues"
},
"homepage": "https://github.com/razen-core/rynex#readme",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"packageManager": "pnpm@10.19.0",
"dependencies": {
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"commander": "^12.1.0",
"express": "^5.1.0",
"ora": "^8.2.0",
"oxlint": "^0.14.1",
"pathe": "^1.1.2",
"rolldown": "1.0.0-beta.44"
},
"devDependencies": {
"@types/express": "^5.0.4",
"@types/node": "^24.9.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"jsdom": "^25.0.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"browserslist": [
"defaults",
"not IE 11"
]
}