-
-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathpackage.json
64 lines (64 loc) · 1.84 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
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
{
"name": "sim8085",
"description": "Development environment for Intel 8085 microprocessor.",
"type": "module",
"version": "2.6.1",
"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": "astro build && cp _redirects dist/",
"preview": "astro preview",
"astro": "astro",
"build-emulator": "./scripts/build-emulator.sh"
},
"dependencies": {
"@astrojs/alpinejs": "^0.4.0",
"@astrojs/solid-js": "^4.4.1",
"@astrojs/tailwind": "^5.1.0",
"@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.2.8",
"@supabase/supabase-js": "^2.46.1",
"@tanstack/solid-virtual": "^3.10.8",
"alpinejs": "^3.14.1",
"codemirror": "^6.0.1",
"posthog-js": "^1.192.1",
"solid-devtools": "^0.30.1",
"solid-icons": "^1.1.0",
"solid-js": "^1.8.22",
"tailwindcss": "^3.4.11",
"uuid": "^11.0.1"
},
"devDependencies": {
"@astrojs/starlight": "^0.28.3",
"@astrojs/starlight-tailwind": "^2.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/alpinejs": "^3.13.10",
"@vite-pwa/assets-generator": "^0.2.6",
"@vite-pwa/astro": "^0.4.3",
"astro": "^4.16.6",
"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"
}
}