-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1018 Bytes
/
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
{
"name": "codesense",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"wasm": "[ -e \"public/tree-sitter.wasm\" ] && echo \"tree-sitter.wasm already linked\" || ln node_modules/web-tree-sitter/tree-sitter.wasm public/",
"dev": "vite",
"build": "pnpm wasm && tsc && vite build",
"preview": "vite preview",
"lint": "eslint src/",
"format": "prettier --write \"src/**/*.{ts,tsx}\""
},
"dependencies": {
"@solid-primitives/upload": "^0.0.114",
"solid-js": "^1.7.8",
"web-tree-sitter": "^0.20.8"
},
"devDependencies": {
"@picocss/pico": "^1.5.10",
"@types/node": "^20.5.1",
"@typescript-eslint/eslint-plugin": "latest",
"@typescript-eslint/parser": "latest",
"eslint": "^8.47.0",
"eslint-plugin-solid": "^0.13.0",
"globals": "^13.21.0",
"prettier": "^3.0.2",
"tree-sitter-c": "^0.20.6",
"tree-sitter-rust": "^0.20.4",
"typescript": "^5.0.2",
"vite": "^4.4.5",
"vite-plugin-solid": "^2.7.0"
}
}