UNPKG

echelonjs

Version:

A new JSX/TSX based framework with decorator-driven reactivity.

84 lines (83 loc) 2.27 kB
{ "name": "echelonjs", "version": "0.2.0", "description": "A new JSX/TSX based framework with decorator-driven reactivity.", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/types/index.d.ts", "files": [ "dist" ], "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "types": "./dist/types/index.d.ts" } }, "repository": { "type": "git", "url": "https://github.com/MswTester/Echelon.git" }, "bugs": { "url": "https://github.com/MswTester/Echelon/issues" }, "homepage": "https://github.com/MswTester/Echelon#readme", "scripts": { "dev": "rollup -c -w", "build": "npm run clean && rollup -c", "clean": "rimraf dist", "lint": "eslint \"src/**/*.ts?(x)\"", "format": "prettier --write \"src/**/*.ts?(x)\"", "test": "jest", "test:watch": "jest --watch", "test:cov": "jest --coverage", "prepublishOnly": "npm run build" }, "keywords": [ "echelon", "framework", "jsx", "tsx", "typescript", "reactive", "decorators" ], "author": "MswTester", "license": "MIT", "devDependencies": { "@babel/cli": "^7.20.0", "@babel/core": "^7.20.0", "@babel/plugin-proposal-class-properties": "^7.18.0", "@babel/plugin-proposal-decorators": "^7.20.0", "@babel/plugin-transform-react-jsx": "^7.27.1", "@babel/preset-env": "^7.20.0", "@babel/preset-typescript": "^7.20.0", "@rollup/plugin-babel": "^6.0.0", "@rollup/plugin-commonjs": "^25.0.0", "@rollup/plugin-node-resolve": "^15.0.0", "@rollup/plugin-terser": "^0.4.4", "@rollup/plugin-typescript": "^11.1.6", "@types/jest": "^29.0.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.50.0", "eslint-config-prettier": "^9.0.0", "eslint-plugin-prettier": "^5.0.0", "jest": "^29.0.0", "jest-environment-jsdom": "^30.0.0", "prettier": "^3.0.0", "reflect-metadata": "^0.1.13", "rimraf": "^5.0.0", "rollup": "^2.79.1", "ts-jest": "^29.0.0", "typescript": "^5.2.0" }, "engines": { "node": ">=16.0.0" }, "publishConfig": { "access": "public" } }