@quantajs/core
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.
53 lines • 1.51 kB
JSON
{
"name": "@quantajs/core",
"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": "2.0.0-beta.5",
"type": "module",
"license": "MIT",
"devDependencies": {},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"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 \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,css,scss,md}\""
}
}