@constellar/core
Version:
state manipulation primitives
44 lines • 1.08 kB
JSON
{
"name": "@constellar/core",
"repository": {
"type": "git",
"url": "git+https://github.com/prncss-xyz/constellar.git"
},
"keywords": [
"optics",
"machine",
"statechart",
"state"
],
"private": false,
"type": "module",
"version": "2.4.2",
"description": "state manipulation primitives",
"files": [
"dist"
],
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"author": "Juliette Lamarche",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.2.0",
"@vitest/coverage-v8": "^2.0.5",
"vite": "^5.4.0",
"vite-plugin-dts": "^4.0.2",
"vitest": "^2.0.5"
},
"scripts": {
"dev:test": "vitest watch",
"build": "tsc -p ./tsconfig.json && vite build",
"test:unit": "vitest run --typecheck",
"test:coverage": "vitest run --coverage",
"test:lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"test:types": "tsc --noEmit",
"format": "prettier --write ./src"
}
}