-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2 KB
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
{
"name": "weakauras",
"version": "0.0.1",
"description": "",
"main": "src/lua/index.ts",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"dev": "next dev",
"build": "npm run prebuild && next build",
"prebuild": "node prebuild.mjs",
"start": "next start",
"lint": "next lint",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"encode": "ts-node public/lua/encode.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fx/weakauras.git"
},
"author": "Marian Rudzynski <marian@rudzyn.ski>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fx/weakauras/issues"
},
"homepage": "https://github.com/fx/weakauras#readme",
"dependencies": {
"@bjorn3/browser_wasi_shim": "^0.2.21",
"@monaco-editor/react": "^4.7.0",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-menubar": "^1.1.15",
"@radix-ui/react-navigation-menu": "^1.2.13",
"@radix-ui/react-slot": "^1.0.2",
"@ruby/wasm-wasi": "2.4.1-2024-01-11-a",
"@svgr/webpack": "^8.1.0",
"@types/node": "^20.19.10",
"@types/pako": "^2.0.3",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"gray-matter": "^4.0.3",
"lucide-react": "^0.307.0",
"next": "^14.2.33",
"pako": "^2.1.0",
"posthog-js": "^1.259.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"usehooks-ts": "^2.16.0",
"vitest": "^3.2.4",
"wasmoon": "^1.16.0"
},
"devDependencies": {
"@testing-library/react": "^16.3.0",
"@types/react": "18.2.46",
"@vitejs/plugin-react": "^4.7.0",
"@vitest/browser": "^3.2.4",
"@vitest/coverage-istanbul": "^3.2.4",
"autoprefixer": "^10.4.21",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.33",
"jsdom": "^24.1.3",
"playwright": "^1.54.2",
"postcss": "^8.5.6",
"tailwindcss": "^3.4.17"
}
}