ttrpg-tools/package.json

91 lines
2.4 KiB
JSON
Raw Normal View History

2026-02-26 00:17:23 +08:00
{
"name": "tttk",
2026-02-26 00:17:23 +08:00
"version": "0.0.1",
"description": "A tabletop RPG toolkit for previewing and compiling TTRPG campaign content",
2026-02-26 00:17:23 +08:00
"type": "module",
"bin": {
"tttk": "./dist/cli/index.js"
2026-02-26 00:17:23 +08:00
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/hypercross/ttrpg-tools"
},
"engines": {
"node": ">=18"
2026-02-26 00:17:23 +08:00
},
"scripts": {
"dev": "rsbuild dev",
"build": "npm run build:web && npm run build:cli",
"build:web": "rsbuild build",
"build:cli": "tsc -p tsconfig.cli.json",
2026-02-26 00:17:23 +08:00
"preview": "rsbuild preview",
"analyze": "cross-env ANALYZE=true rsbuild build",
2026-02-26 00:17:23 +08:00
"cli:dev": "tsc -p tsconfig.cli.json --watch",
"cli:build": "npm run build:cli",
2026-03-15 11:44:23 +08:00
"ttrpg": "node --loader ts-node/esm ./src/cli/index.ts",
"tttk": "node --loader ts-node/esm ./src/cli/index.ts",
"test": "jest",
"prepare": "npx husky",
"prepublishOnly": "npm run build"
2026-02-26 00:17:23 +08:00
},
"keywords": [
"ttrpg",
"solid-js",
"markdown",
"toolbox"
],
"author": "hypercross",
2026-02-26 00:17:23 +08:00
"license": "MIT",
"dependencies": {
2026-03-17 20:01:04 +08:00
"@modelcontextprotocol/sdk": "^0.5.0",
2026-02-26 00:17:23 +08:00
"@solidjs/router": "^0.15.0",
"@thisbeyond/solid-dnd": "^0.7.5",
"aedes": "^1.1.1",
2026-02-26 13:35:09 +08:00
"chokidar": "^5.0.0",
"comlink": "^4.4.2",
2026-03-02 11:03:51 +08:00
"commander": "^14.0.3",
"csv-parse": "^6.1.0",
2026-03-18 12:08:28 +08:00
"csv-stringify": "^6.7.0",
2026-02-28 11:42:42 +08:00
"js-yaml": "^4.1.1",
2026-03-02 11:03:51 +08:00
"marked": "^17.0.3",
2026-02-28 13:58:51 +08:00
"marked-alert": "^2.1.2",
2026-02-26 00:17:23 +08:00
"marked-directive": "^1.0.7",
2026-03-02 13:39:36 +08:00
"marked-gfm-heading-id": "^4.1.3",
2026-03-02 11:03:51 +08:00
"mermaid": "^11.0.0",
"mqtt": "^5.15.1",
2026-02-26 00:47:26 +08:00
"solid-element": "^1.9.1",
2026-03-15 18:45:20 +08:00
"solid-js": "^1.9.3",
2026-07-08 11:48:25 +08:00
"uuid": "^14.0.1",
"ws": "^8.21.0",
"yarn-spinner-loader": "^0.1.0",
"zod": "^4.4.3"
2026-02-26 00:17:23 +08:00
},
"devDependencies": {
"@rsbuild/core": "^1.1.8",
2026-02-26 00:27:38 +08:00
"@rsbuild/plugin-babel": "^1.1.0",
2026-03-02 11:03:51 +08:00
"@rsbuild/plugin-solid": "^1.1.0",
2026-02-26 08:14:42 +08:00
"@tailwindcss/postcss": "^4.2.1",
2026-02-26 00:17:23 +08:00
"@tailwindcss/typography": "^0.5.15",
"@tailwindcss/vite": "^4.0.0",
2026-03-15 11:44:23 +08:00
"@types/jest": "^30.0.0",
2026-03-03 20:43:32 +08:00
"@types/js-yaml": "^4.0.9",
2026-03-02 11:03:51 +08:00
"@types/node": "^22.19.13",
2026-07-08 11:48:25 +08:00
"@types/uuid": "^10.0.0",
"@types/ws": "^8.18.1",
"cross-env": "^10.1.0",
"husky": "^9.1.7",
2026-03-15 11:44:23 +08:00
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
2026-02-26 00:17:23 +08:00
"tailwindcss": "^4.0.0",
2026-03-15 11:44:23 +08:00
"ts-jest": "^29.4.6",
2026-02-26 00:17:23 +08:00
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack-bundle-analyzer": "^5.3.0"
2026-02-26 00:17:23 +08:00
}
}