-
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.11 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.11 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
{
"name": "ast-grep-playground",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "vitepress dev website",
"dev-force": "vitepress dev website --force",
"build": "vue-tsc --noEmit && NODE_OPTIONS=--max_old_space_size=4096 vitepress build website",
"download-parsers": "node --experimental-strip-types website/public/parsers/downloadParsers.mjs",
"serve": "vitepress serve website",
"lint": "oxlint && dprint check",
"lint:fix": "oxlint --fix && dprint fmt"
},
"dependencies": {
"@number-flow/vue": "0.5.0",
"@types/js-yaml": "4.0.9",
"js-yaml": "4.1.1",
"monaco-editor": "0.52.2",
"monaco-yaml": "5.4.1",
"vitepress-plugin-llms": "1.11.0",
"web-tree-sitter": "0.25.3",
"vue": "3.5.30"
},
"optionalDependencies": {
"ast-grep-wasm": "file:./pkg/"
},
"devDependencies": {
"dprint": "0.53.0",
"@algolia/client-search": "5.47.0",
"markdown-it": "14.1.1",
"oxlint": "1.51.0",
"search-insights": "2.17.3",
"typescript": "5.9.3",
"vite": "7.3.1",
"vitepress": "1.6.4",
"vue-tsc": "3.2.5"
}
}