boardgame-core/package.json

39 lines
865 B
JSON

{
"name": "boardgame-core",
"version": "1.0.0",
"description": "A state management library for board games using Preact Signals",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"prepare": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@preact/signals-core": "^1.5.1",
"inline-schema": "git+https://gitea.ayi-games.online/hypercross/inline-schema",
"mutative": "^1.3.0"
},
"devDependencies": {
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vitest": "^1.3.1"
},
"keywords": [
"boardgame",
"state-management",
"preact",
"signals"
],
"license": "MIT"
}