UNPKG

@traxjs/trax

Version:

Reactive state management

53 lines (52 loc) 1.33 kB
{ "name": "@traxjs/trax", "version": "1.0.0", "description": "Reactive state management", "main": "dist/trax.mjs", "types": "dist/index.d.ts", "typings": "dist/index.d.ts", "files": [ "src", "dist" ], "author": "Bertrand Laporte", "repository": { "type": "git", "url": "https://github.com/traxjs/trax" }, "license": "MIT", "bugs": "https://github.com/traxjs/trax/issues", "keywords": [ "data store", "state management", "state", "compute", "computed property", "reactive", "reactivity", "mobx", "observable", "trackable", "react-component", "react", "preact", "model", "frp", "data flow" ], "scripts": { "clean": "rimraf dist lib", "build": "yarn clean && tsc && vite build && cp -R lib/*.d.ts dist", "test": "vitest", "coverage": "vitest run --coverage", "prepublish": "yarn build && vitest run", "npm-publish": "yarn prepublish && npm publish --access public" }, "devDependencies": { "@vitest/coverage-c8": "^0.27.1", "rimraf": "5.0.0", "typescript": "^4.9.4", "vite": "^4.3.9", "vitest": "^0.26.3" } }