UNPKG

ordojs

Version:

A revolutionary web framework with compile-time optimizations and unified client-server development

77 lines (76 loc) 1.94 kB
{ "name": "ordojs", "version": "0.5.0-beta.4", "description": "A revolutionary web framework with compile-time optimizations and unified client-server development", "private": false, "type": "module", "main": "./packages/core/dist/index.js", "bin": { "ordojs": "./packages/cli/dist/cli.js" }, "exports": { ".": { "import": "./packages/core/dist/index.js", "require": "./packages/core/dist/index.js" } }, "files": [ "packages/core/dist/**/*", "packages/cli/dist/**/*", "README.md" ], "packageManager": "pnpm@8.15.0", "scripts": { "build": "pnpm -r build", "dev": "pnpm -r dev", "test": "vitest run", "test:watch": "vitest", "lint": "eslint . --ext .ts,.js,.json", "lint:fix": "eslint . --ext .ts,.js,.json --fix", "format": "prettier --write .", "format:check": "prettier --check .", "typecheck": "pnpm -r typecheck", "clean": "pnpm -r clean && rm -rf node_modules" }, "dependencies": { "@ordojs/core": "^0.5.0-beta.1", "@ordojs/cli": "^0.5.0-beta.2" }, "devDependencies": { "@types/node": "^20.11.0", "@typescript-eslint/eslint-plugin": "^6.19.0", "@typescript-eslint/parser": "^6.19.0", "eslint": "^8.56.0", "eslint-config-prettier": "^9.1.0", "eslint-plugin-import": "^2.29.1", "prettier": "^3.2.4", "typescript": "^5.3.3", "vitest": "^1.2.0", "jsdom": "^23.2.0", "@types/jsdom": "^21.1.6" }, "engines": { "node": ">=18.0.0", "pnpm": ">=8.0.0" }, "keywords": [ "web-framework", "compiler", "typescript", "full-stack", "reactive", "performance", "ordojs", "framework" ], "author": "OrdoJS Framework Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/ordojs/ordojs.git" }, "bugs": { "url": "https://github.com/ordojs/ordojs/issues" }, "homepage": "https://ordojs.dev" }