quantajs
Version:
A compact, scalable, and developer-friendly state management library designed for any JavaScript environment. It includes a reactivity system that enables efficient and flexible data handling, making complex state management easy.
74 lines (73 loc) • 2.03 kB
JSON
{
"name": "quantajs",
"private": false,
"author": {
"name": "Jeel Gajera",
"url": "https://github.com/JeelGajera"
},
"description": "A compact, scalable, and developer-friendly state management library designed for any JavaScript environment. It includes a reactivity system that enables efficient and flexible data handling, making complex state management easy.",
"keywords": [
"quantajs",
"quanta",
"state-management",
"reactivity"
],
"repository": {
"type": "git",
"url": "git+https://github.com/quanta-js/quanta.git"
},
"bugs": {
"url": "https://github.com/quanta-js/quanta/issues"
},
"homepage": "https://quantajs.com",
"version": "1.0.0-beta.7",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "npm run format && npm run lint:fix && npm run build",
"build": "npm run clean && vite build",
"preview": "vite preview",
"clean": "rimraf dist",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\""
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.0",
"@eslint/js": "^9.21.0",
"@types/node": "^22.2.0",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-unused-imports": "^4.1.3",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.3",
"vite": "^6.2.3",
"vite-plugin-dts": "^4.0.3",
"vite-plugin-eslint": "^1.8.1"
},
"dependencies": {
"quantajs": "file:"
},
"publishConfig": {
"access": "public",
"tag": "beta"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
}
}