-
-
Notifications
You must be signed in to change notification settings - Fork 115
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 3.04 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 3.04 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
88
89
{
"name": "infinite-mac",
"version": "0.1.0",
"private": true,
"type": "module",
"dependencies": {
"@anthropic-ai/sdk": "^0.55.1",
"classnames": "^2.3.2",
"cookie": "^0.7.2",
"file-saver": "^2.0.5",
"jszip": "^3.7.0",
"linkify-react": "^4.3.2",
"openai": "^5.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ringbuf.js": "^0.3.3",
"typescript": "^5.8.3",
"use-debounce": "^10.0.3"
},
"devDependencies": {
"@cloudflare/vite-plugin": "^1.31.0",
"@cloudflare/workers-types": "^4.20250525.0",
"@eslint/compat": "^1.2.9",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.28.0",
"@types/audioworklet": "^0.0.77",
"@types/cookie": "^0.6.0",
"@types/dom-view-transitions": "^1.0.6",
"@types/emscripten": "^1.39.13",
"@types/file-saver": "^2.0.5",
"@types/node": "^24.10.1",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"@vitejs/plugin-basic-ssl": "^2.3.0",
"@vitejs/plugin-react": "^6.0.1",
"clang-format": "^1.8.0",
"csstype": "^3.1.3",
"eslint": "^9.28.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.2.0",
"prettier": "^3.5.3",
"vite": "^8.0.5",
"vite-plugin-svgr": "^5.2.0",
"wrangler": "^4.80.0"
},
"scripts": {
"import-emulator": "scripts/import-emulator.sh",
"import-disks": "uv run scripts/import-disks.py",
"import-cd-roms": "uv run scripts/import-cd-roms.py",
"import-library": "uv run scripts/import-library.py",
"load-placeholder-stickies-file": "uv run scripts/load-placeholder-stickies-file.py",
"build-tools": "scripts/build-tools.sh",
"generate-local-ca-bundle": "node scripts/generate-local-ca-bundle.mjs",
"start": "scripts/start-dev.sh",
"build": "vite build",
"preview": "vite preview --host",
"worker-dev": "wrangler dev --port=3128",
"worker-deploy": "scripts/worker-deploy.sh",
"sync-disks": "scripts/sync-disks.sh",
"prettier": "prettier --write src worker",
"lint": "eslint --fix src worker",
"check": "tsc --noEmit && tsc --noEmit --project worker/tsconfig.json",
"format-macemu": "clang-format -i --glob=macemu/BasiliskII/src/Unix/JS/*"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"prettier": {
"trailingComma": "es5",
"bracketSameLine": true,
"bracketSpacing": false,
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"quoteProps": "preserve",
"arrowParens": "avoid"
}
}