ttrpg-tools/package.json

57 lines
1.4 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",
"ttrpg": "node --loader ts-node/esm ./src/cli/index.ts"
},
"keywords": [
"ttrpg",
"solid-js",
"markdown",
"toolbox"
],
"author": "",
"license": "MIT",
"dependencies": {
"@solidjs/router": "^0.15.0",
2026-02-26 13:35:09 +08:00
"chokidar": "^5.0.0",
2026-02-26 00:17:23 +08:00
"commander": "^12.1.0",
"csv-parse": "^5.5.6",
2026-02-27 20:27:26 +08:00
"html2canvas": "^1.4.1",
"jspdf": "^4.2.0",
2026-02-26 00:17:23 +08:00
"marked": "^14.1.0",
"marked-directive": "^1.0.7",
2026-02-26 00:47:26 +08:00
"solid-element": "^1.9.1",
2026-02-26 00:17:23 +08:00
"solid-js": "^1.9.3"
},
"devDependencies": {
"@rsbuild/core": "^1.1.8",
2026-02-26 00:27:38 +08:00
"@rsbuild/plugin-babel": "^1.1.0",
2026-02-26 00:17:23 +08:00
"@rsbuild/plugin-solid": "^1.0.7",
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",
"@types/node": "^22.10.2",
"tailwindcss": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
}
}