-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.58 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.58 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
{
"name": "play-expression-parser",
"type": "module",
"scripts": {
"start": "vinxi dev --host 0.0.0.0,host.docker.internal",
"dev": "vinxi dev",
"build": "vinxi build",
"serve": "vinxi start",
"test": "vitest",
"check": "tsc --noEmit",
"lint": "biome lint",
"format": "biome lint --write --unsafe"
},
"dependencies": {
"@codemirror/autocomplete": "6.18.6",
"@codemirror/lang-javascript": "6.2.3",
"@codemirror/lang-json": "6.0.1",
"@codemirror/language": "6.10.8",
"@codemirror/lint": "6.8.4",
"@codemirror/state": "6.5.2",
"@codemirror/view": "6.36.4",
"@lezer/highlight": "^1.2.1",
"@solid-primitives/event-listener": "^2.4.0",
"@solid-primitives/i18n": "^2.2.0",
"@solidjs/meta": "^0.29.4",
"@solidjs/router": "^0.15.3",
"@solidjs/start": "^1.1.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"codemirror": "^6.0.1",
"codemirror-json5": "^1.0.3",
"solid-js": "^1.9.5",
"solid-transition-group": "^0.3.0",
"tailwind-merge": "^3.0.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/vite": "^4.0.9",
"autoprefixer": "^10.4.21",
"postcss": "^8.4.49",
"rollup-plugin-visualizer": "^5.14.0",
"tailwindcss": "^4.0.8",
"tsx": "^4.19.2",
"typescript": "^5.8.2",
"vinxi": "^0.5.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.8"
},
"author": {
"name": "夜浮卿(yefu)",
"email": "243249439@qq.com",
"github": "https://github.com/yefu24324/expression-parser"
}
}