ttrpg-tools/package.json

72 lines
1.9 KiB
JSON
Raw Normal View History

2026-02-26 00:17:23 +08:00
{
"name": "ttrpg-tools",
"version": "0.0.1",
"description": "A TTRPG toolbox based on solid.js and rsbuild",
"type": "module",
"bin": {
2026-02-26 16:06:24 +08:00
"ttrpg": "./dist/cli/index.js"
2026-02-26 00:17:23 +08:00
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./components": "./dist/components/index.js",
"./markdown": "./dist/markdown/index.js"
},
"scripts": {
"dev": "rsbuild dev",
"build": "rsbuild build",
"preview": "rsbuild preview",
"cli:dev": "tsc -p tsconfig.cli.json --watch",
"cli:build": "tsc -p tsconfig.cli.json",
2026-03-15 11:44:23 +08:00
"ttrpg": "node --loader ts-node/esm ./src/cli/index.ts",
"test": "jest"
2026-02-26 00:17:23 +08:00
},
"keywords": [
"ttrpg",
"solid-js",
"markdown",
"toolbox"
],
"author": "",
"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",
2026-03-15 18:45:20 +08:00
"@types/three": "^0.183.1",
2026-02-26 13:35:09 +08:00
"chokidar": "^5.0.0",
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",
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-03-15 22:35:38 +08:00
"three": "^0.183.2",
"three-3mf-exporter": "^45.1.0"
2026-02-26 00:17:23 +08:00
},
"devDependencies": {
2026-03-15 18:45:20 +08:00
"@image-tracer-ts/core": "^1.0.2",
2026-02-26 00:17:23 +08:00
"@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-03-31 15:40:06 +08:00
"inline-schema": "git+https://gitea.ayi-games.online/hypercross/inline-schema",
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",
2026-03-31 15:40:06 +08:00
"typescript": "^5.9.3"
2026-02-26 00:17:23 +08:00
}
}