-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.53 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 3.53 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "friscy-standalone",
"version": "1.0.0",
"type": "module",
"description": "<div align=\"center\"> <table border=\"0\" style=\"border-collapse: collapse; border-style: hidden;\"> <tr> <td align=\"left\" valign=\"bottom\" style=\"border: none; padding-right: 30px;\"> <pre> ▐▀▀▀▀▀▀▀▌ ▐ fRISCy ⸎ <strong>fast risc-v runtime for the browser</strong> ▐▄▄▄▄▄▄▄▌ </pre> <br> <strong> friscy runs docker containers in WebAssembly by:</strong> <br><br> <div style=\"font-weight: 600; margin-bottom: 8px;\"> </div> <ul align=\"left\" style=\"margin-top: 0;\"> <li>Cross-compiling containers to RISC-V 64-bit</li> <li>Running them in a userland RISC-V emulator (libriscv)</li> </ul> </td> <td valign=\"bottom\" style=\"border: none;\"> <img width=\"238\" height=\"313\" alt=\"fh\" src=\"https://github.com/user-attachments/assets/aa87c5bc-18ec-470e-8ee8-8a013609bb18\" /> </td> </tr> </table> </div> <br>",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build:bundle": "esbuild friscy-bundle/app.ts --bundle --format=iife --platform=browser --target=es2020 --outfile=friscy-bundle/dist/bundle.js",
"build:swbn": "npm run build && node scripts/sign-bundle.js",
"lint": "eslint .",
"proof:process": "npm run build:bundle && node tests/verify_process_proof.mjs",
"proof:process:shots": "npm run build:bundle && node tests/verify_process_proof.mjs",
"preview": "vite preview",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maceip/friscy.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/maceip/friscy/issues"
},
"homepage": "https://github.com/maceip/friscy#readme",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"@xenova/transformers": "^2.17.2",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-image": "^0.9.0",
"@xterm/addon-search": "^0.16.0",
"@xterm/addon-unicode11": "^0.9.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/addon-webgl": "^0.19.0",
"fflate": "^0.8.2",
"lucide-react": "^0.574.0",
"puppeteer": "^24.37.2",
"quicklink": "^3.0.1",
"react-markdown": "^10.1.0",
"remark-gfm": "^4.0.1",
"three": "^0.183.0",
"wbn": "^0.0.8",
"xterm": "^5.3.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.2.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.4",
"autoprefixer": "^10.4.24",
"eslint": "^10.0.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.5.0",
"globals": "^17.3.0",
"jsdom": "^28.1.0",
"postcss": "^8.5.6",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"rollup-plugin-webbundle": "^0.2.0",
"tailwindcss": "^4.2.0",
"ts-loader": "^9.5.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^6.4.1",
"vite-plugin-pwa": "^1.2.0",
"vitest": "^4.0.18",
"wbn-sign": "^0.2.5",
"webpack": "^5.105.2",
"webpack-cli": "^6.0.1"
}
}