-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 803 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 803 Bytes
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
{
"name": "c2tsdemo",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"swiftbuild": "swift build --product C2TS --triple wasm32-unknown-wasi -c release && npx wasm-opt -Os .build/release/C2TS.wasm -o public/C2TS.wasm && wasm-strip public/C2TS.wasm"
},
"dependencies": {
"@monaco-editor/react": "^4.4.6",
"@wasmer/wasi": "^0.12.0",
"@wasmer/wasmfs": "^0.12.0",
"buffer": "^6.0.3",
"process": "^0.11.10",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@vitejs/plugin-react": "^3.0.0",
"typescript": "^4.9.4",
"vite": "^4.0.0",
"wasm-opt": "^1.3.0"
}
}