-
-
Notifications
You must be signed in to change notification settings - Fork 150
/
package.json
48 lines (48 loc) · 1.59 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
{
"name": "viselect-root",
"author": "Simon Reinisch <[email protected]>",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "^22"
},
"scripts": {
"dev": "pnpm run --parallel dev",
"build": "pnpm run --recursive build",
"lint": "eslint 'packages/*/{src,demo}/**/*.{ts,tsx,vue,js}' --cache",
"lint:fix": "pnpm run lint --fix",
"test:ci": "pnpm run lint:fix && pnpm run build",
"release:major": "lerna version major",
"release:minor": "lerna version minor",
"release:patch": "lerna version patch"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@preact/preset-vite": "2.9.1",
"@types/node": "22.9.0",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "8.15.0",
"@typescript-eslint/parser": "8.15.0",
"@vitejs/plugin-react": "4.3.3",
"@vitejs/plugin-vue": "5.2.0",
"@vue/compiler-sfc": "3.5.13",
"@vue/eslint-config-typescript": "14.1.3",
"eslint": "9.15.0",
"eslint-plugin-prefer-arrow-functions": "3.4.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-vue": "9.31.0",
"lerna": "8.1.9",
"preact": "10.24.3",
"react": "18.3.1",
"react-dom": "18.3.1",
"typescript": "5.6.3",
"typescript-eslint": "8.15.0",
"vite": "5.4.11",
"vite-plugin-banner": "0.8.0",
"vite-plugin-dts": "4.3.0",
"vue": "3.5.13",
"vue-tsc": "2.1.10"
}
}