-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.53 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "magebook",
"author": "Luca Fabbian",
"email": "[email protected]",
"description": "Interactive fiction editor",
"license": "MIT",
"homepage": "https://librogamesland.github.io/magebook",
"repository": {
"type": "git",
"url": "https://github.com/librogamesland/magebook.git"
},
"keywords": [
"lgl",
"librogamesland",
"librogame",
"gamebook",
"editor",
"rollup-plugin",
"vite-plugin"
],
"main": "./dist/magebook.js",
"module": "./dist/magebook.mjs",
"scripts": {
"docs": "docsify serve . --port 3005",
"version": "echo $npm_package_version",
"dev": "vite",
"build": "vite build && (npm run api:build || exit 0)",
"api:build": "bun build ./src/api.ts --outfile dist/index.js --target node && npx tsc --emitDeclarationOnly src/api.ts -d --outfile dist/index",
"vs:build": "vite build && rm -rf ./vscode/editor && cp -r ./editor ./vscode/ && mv ./vscode/editor/assets/index.*.js ./vscode/editor/assets/index.js && mv ./vscode/editor/assets/index.*.css ./vscode/editor/assets/index.css",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"test": "vite build && vitest run",
"test:ui": "vite build && vitest --ui"
},
"devDependencies": {
"@codemirror/commands": "^6.2.5",
"@codemirror/lang-markdown": "^6.2.0",
"@codemirror/search": "^6.5.2",
"@codemirror/view": "^6.18.0",
"@fbraem/rollup-plugin-toml": "^0.0.4",
"@lucafabbian/firepad": "^1.5.20",
"@sveltejs/vite-plugin-svelte": "^2.4.5",
"@tsconfig/svelte": "^5.0.2",
"@types/file-saver": "^2.0.5",
"@types/marked": "^5.0.1",
"@types/sanitize-html": "^2.9.0",
"@vitest/ui": "^0.34.4",
"@viz-js/viz": "^3.1.0",
"@zerodevx/svelte-toast": "^0.9.5",
"autoprefixer": "^10.4.15",
"bun": "^1.0.1",
"codemirror": "^6.0.1",
"date-format": "^4.0.14",
"dedent-js": "^1.0.1",
"dexie": "^3.2.4",
"docx": "^8.2.2",
"file-saver": "^2.0.5",
"firebase": "^9.0.0",
"js-base64": "^3.7.5",
"jsdom": "^22.1.0",
"marked": "^9.0.0",
"node-fetch": "^3.3.2",
"postcss": "^8.4.29",
"puppeteer": "^21.1.1",
"query-string": "^8.1.0",
"sanitize-html": "^2.11.0",
"smooth-scroll-into-view-if-needed": "^2.0.0",
"svelte": "^4.2.0",
"svelte-check": "^3.5.1",
"svelte-i18n": "^3.7.4",
"svelte-preprocess": "^5.0.4",
"tailwindcss": "^3.3.3",
"tmp-promise": "^3.0.3",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vitest": "^0.34.4"
}
}