-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.01 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
{
"name": "sprig",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"test": "bun run ./tests/sprigfuzzy.js",
"test:unit": "cross-env PUBLIC_MAX_ITERATIONS=2000 PUBLIC_MAX_LOOP_TIME_MS=1500 vitest"
},
"dependencies": {
"@astrojs/preact": "5.1.2",
"@astrojs/svelte": "8.0.4",
"@astrojs/vercel": "^10.0.7",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.6",
"@codemirror/search": "^6.7.0",
"@codemirror/state": "^6.6.0",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.0",
"@lezer/common": "^1.5.2",
"@preact/signals": "2.9.0",
"@sendgrid/mail": "^8.1.6",
"@types/react": "^19.2.15",
"astro": "6.1.10",
"bcryptjs": "^3.0.3",
"cross-env": "^10.1.0",
"dotenv": "^17.4.2",
"firebase-admin": "^11.11.1",
"js-beautify": "^1.15.4",
"js-levenshtein": "^1.1.6",
"loops": "^6.3.0",
"markdown-it": "^14.1.1",
"ms": "^2.1.3",
"nanoid": "^5.1.11",
"node-statsd": "^0.1.1",
"postprocessing": "^7.0.0-beta.16",
"preact": "10.29.1",
"react-icons": "^5.6.0",
"rehype-external-links": "^3.0.0",
"sass": "^1.99.0",
"svelte": "5.55.8",
"three": "0.183.2",
"throttle-debounce": "^5.0.2",
"tinykeys": "^3.1.0",
"vitest": "^4.1.7",
"y-codemirror.next": "^0.3.5",
"y-webrtc": "^10.3.0",
"yjs": "^13.6.30"
},
"devDependencies": {
"@babel/standalone": "^7.29.4",
"@prefresh/vite": "^3.0.1",
"@types/babel__standalone": "^7.1.9",
"@types/bcryptjs": "^3.0.0",
"@types/debounce": "^1.2.4",
"@types/esprima": "^4.0.6",
"@types/grecaptcha": "^3.0.9",
"@types/js-beautify": "^1.14.3",
"@types/js-levenshtein": "^1.1.3",
"@types/markdown-it": "^14.1.2",
"@types/node-statsd": "^0.1.7",
"@types/three": "^0.183.1",
"@types/throttle-debounce": "^5.0.2",
"@types/w3c-web-serial": "^1.0.8",
"typescript": "5.9.3",
"vitest-canvas-mock": "^1.1.4"
}
}