-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
68 lines (68 loc) · 1.79 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
65
66
67
68
{
"name": "@oxc-project/playground",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"description": "oxc playground",
"type": "module",
"license": "MIT",
"homepage": "https://oxc.rs",
"bugs": "https://github.com/oxc-project/playground/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/oxc-project/playground.git"
},
"main": "",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"format": "prettier",
"typecheck": "vue-tsc",
"lint": "eslint --cache",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@unocss/reset": "^0.65.3",
"@viz-js/viz": "^3.11.0",
"@vueuse/core": "^12.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"fflate": "^0.8.2",
"lucide-vue-next": "^0.469.0",
"monaco-editor": "^0.52.2",
"radix-vue": "^1.9.11",
"tailwind-merge": "^2.6.0",
"vue": "^3.5.13"
},
"devDependencies": {
"@iconify-json/ri": "^1.2.5",
"@oxc/oxc_wasm": "link:../oxc/npm/oxc-wasm",
"@sxzz/eslint-config": "^4.5.1",
"@sxzz/prettier-config": "^2.0.2",
"@types/node": "^22.10.2",
"@vitejs/plugin-vue": "^5.2.1",
"eslint": "^9.17.0",
"lint-staged": "^15.2.11",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"shiki": "^1.24.4",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unocss": "^0.65.3",
"unocss-preset-animations": "^1.1.0",
"unocss-preset-shadcn": "^0.3.1",
"vite": "^6.0.6",
"vue-tsc": "~2.1.10"
},
"engines": {
"node": ">=20.14.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,tsx,ts,mts,css,md,json,yml,vue}": "eslint --fix --cache"
},
"prettier": "@sxzz/prettier-config"
}