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 <[email protected]>",
"private": true,
"license": "MIT",
"packageManager": "[email protected]",
"engines": {
"node": "^18.12.0"
},
"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.5.0",
"@types/react": "18.2.15",
"@types/react-dom": "18.2.7",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"@vitejs/plugin-react": "4.0.3",
"@vitejs/plugin-vue": "4.2.3",
"@vue/compiler-sfc": "3.3.4",
"@vue/eslint-config-typescript": "11.0.3",
"eslint": "8.45.0",
"eslint-plugin-react": "7.33.0",
"eslint-plugin-vue": "9.15.1",
"lerna": "7.1.4",
"preact": "10.16.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.1.6",
"vite": "4.4.6",
"vite-plugin-banner": "0.7.0",
"vite-plugin-dts": "3.3.1",
"vue": "3.3.4",
"vue-tsc": "1.8.5"
}
}