forked from simonwep/selection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.42 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
{
"name": "viselect-root",
"author": "Simon Reinisch <contact@reinisch.io>",
"private": true,
"license": "MIT",
"packageManager": "pnpm@8.0.0",
"engines": {
"node": "^20"
},
"scripts": {
"dev": "pnpm run --parallel dev",
"build": "pnpm run --recursive build",
"lint": "eslint 'packages/*/{src,demo}/*.{ts,tsx,vue,js}'",
"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": {
"@preact/preset-vite": "2.8.1",
"@types/react": "18.2.79",
"@types/react-dom": "18.2.25",
"@typescript-eslint/eslint-plugin": "7.7.1",
"@typescript-eslint/parser": "7.7.1",
"@vitejs/plugin-react": "4.2.1",
"@vitejs/plugin-vue": "5.0.4",
"@vue/compiler-sfc": "3.4.25",
"@vue/eslint-config-typescript": "13.0.0",
"eslint": "8.57.0",
"eslint-plugin-react": "7.34.1",
"eslint-plugin-vue": "9.25.0",
"lerna": "8.1.2",
"preact": "10.20.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.4.5",
"vite": "5.2.10",
"vite-plugin-banner": "0.7.1",
"vite-plugin-dts": "3.9.0",
"vue": "3.4.25",
"vue-tsc": "2.0.14"
}
}