-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.59 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.59 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
{
"name": "sim8085",
"description": "Fast, accurate, and offline-capable Intel 8085 simulator with assembler and debugger. Works on desktop and mobile, no installation needed.",
"type": "module",
"version": "2.20.5",
"private": true,
"license": "BSD-3-Clause",
"author": "Debjit Biswas",
"repository": {
"type": "git",
"url": "https://github.com/debjitbis08/sim8085"
},
"scripts": {
"dev": "astro dev",
"test:dev": "vitest",
"test": "vitest run",
"start": "astro dev",
"build": "node scripts/generate-ads-txt.js && astro build",
"preview": "astro preview",
"astro": "astro",
"build-emulator": "./scripts/build-emulator.sh"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.8",
"@astrojs/solid-js": "^5.1.0",
"@astrojs/tailwind": "^6.0.2",
"@catppuccin/tailwindcss": "^0.1.6",
"@codemirror/commands": "^6.6.2",
"@codemirror/language": "^6.10.3",
"@codemirror/state": "^6.4.1",
"@codemirror/view": "^6.33.0",
"@kobalte/core": "^0.13.6",
"@kobalte/tailwindcss": "^0.9.0",
"@lezer/highlight": "^1.2.1",
"@solid-primitives/keyboard": "^1.3.0",
"@supabase/supabase-js": "^2.46.1",
"@tailwindcss/vite": "^4.1.10",
"@tanstack/solid-virtual": "^3.10.8",
"@thumbmarkjs/thumbmarkjs": "^0.20.2",
"@types/jsonwebtoken": "^9.0.10",
"alpinejs": "^3.14.1",
"codemirror": "^6.0.1",
"date-fns": "^4.1.0",
"debounce": "^2.2.0",
"jsonwebtoken": "^9.0.2",
"openai": "^5.8.1",
"posthog-js": "^1.239.1",
"razorpay": "^2.9.6",
"solid-devtools": "^0.30.1",
"solid-icons": "^1.1.0",
"solid-js": "^1.9.5",
"standardwebhooks": "^1.0.0",
"tailwindcss": "^4.1.10",
"uuid": "^11.0.1"
},
"devDependencies": {
"@astrojs/netlify": "^6.4.0",
"@astrojs/starlight": "^0.34.4",
"@astrojs/starlight-tailwind": "^4.0.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@tailwindcss/typography": "^0.5.16",
"@types/alpinejs": "^3.13.10",
"@vite-pwa/assets-generator": "^0.2.6",
"@vite-pwa/astro": "^0.4.3",
"astro": "^5.9.4",
"fast-check": "^3.22.0",
"nanoid": "^5.0.7",
"peggy": "^4.0.3",
"semantic-release": "^24.2.0",
"sharp": "^0.33.5",
"vite-plugin-peggy-loader": "^2.0.1",
"vitest": "^2.1.1",
"workbox-window": "^7.1.0"
}
}