-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.21 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
{
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/lodash": "^4.14.200",
"@types/react": "^18.2.21",
"@types/react-dom": "^18.2.7",
"@vitejs/plugin-react": "^4.0.4",
"classnames": "^2.3.2",
"esbuild-runner": "^2.2.2",
"husky": "^8.0.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-require-transform": "^1.0.21",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^2.0.3"
},
"name": "kuna",
"version": "0.0.1",
"description": "Tools for parsing Toaq Delta",
"scripts": {
"prepare": "husky install && bash ./.husky/post-checkout",
"postinstall": "pnpm run codegen",
"format": "pnpm exec biome format",
"lint": "pnpm exec biome lint",
"check": "pnpm exec biome check",
"cli": "pnpm exec esr src/cli.ts",
"cli:debug": "node --inspect-brk -r esbuild-runner/register src/cli.ts",
"bot": "pnpm exec esr src/bot/main.ts",
"bot:debug": "node --inspect-brk -r esbuild-runner/register src/bot/main.ts",
"codegen": "pnpm exec esr src/scripts/grammar-preprocessor.ts src/toaq.kuna.ne src/toaq.ne && pnpm exec nearleyc src/toaq.ne -o src/grammar.ts",
"data:build": "pnpm exec esr src/scripts/build-data.ts",
"test": "pnpm exec vitest",
"ts:build": "pnpm exec tsc",
"ts:check": "pnpm exec tsc --noEmit",
"web": "pnpm exec vite",
"web:build": "pnpm exec vite build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/toaq/kuna.git"
},
"author": "the Toaq Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/toaq/kuna/issues"
},
"homepage": "https://github.com/toaq/kuna#readme",
"dependencies": {
"@types/nearley": "^2.11.2",
"@types/yargs": "^17.0.20",
"better-react-mathjax": "^2.0.3",
"canvas": "^2.11.2",
"discord.js": "^14.13.0",
"kdljs": "^0.2.0",
"lodash": "^4.17.21",
"mathjax": "^3.2.2",
"mathjax-full": "^3.2.2",
"nearley": "^2.20.1",
"pos": "^0.4.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-intersection-observer": "^9.5.3",
"react-router-dom": "^6.20.1",
"react-tooltip": "^5.27.0",
"usehooks-ts": "^2.9.1",
"yargs": "^17.6.2"
},
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}