-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.15 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
{
"name": "mastermind",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"test:wasm": "cd compiler && cargo test",
"dev": "vite",
"build:grammar": "yarn run lezer-generator src/lexer/mastermind.grammar -o src/lexer/mastermind_parser.js",
"build:wasm": "cd compiler && wasm-pack build --target web",
"build": "tsc && vite build",
"profile:wasm": "yarn build:wasm --profiling && yarn build && twiggy top -n 20 compiler/pkg/mastermind_bg.wasm",
"preview": "vite preview"
},
"dependencies": {
"@babel/runtime": "^7.23.5",
"@codemirror/lang-cpp": "^6.0.2",
"@lezer/highlight": "^1.2.0",
"@solid-primitives/storage": "^2.1.1",
"@thisbeyond/solid-dnd": "^0.7.5",
"@uiw/codemirror-theme-tokyo-night": "^4.21.21",
"codemirror": "^6.0.1",
"remark-gfm": "3.0.1",
"solid-icons": "^1.1.0",
"solid-js": "^1.8.5",
"solid-markdown": "^2.0.0",
"uuid": "^9.0.1"
},
"devDependencies": {
"@lezer/generator": "^1.5.1",
"@types/uuid": "^9.0.7",
"typescript": "^5.2.2",
"vite": "^5.0.0",
"vite-bundle-visualizer": "^1.0.0",
"vite-plugin-solid": "^2.7.2"
}
}