generated from antfu/starter-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
101 lines (101 loc) · 2.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "vue-range-multi",
"type": "module",
"version": "0.4.1",
"packageManager": "[email protected]",
"description": "A Vue range / slider component that supports one or more thumb",
"author": "wiidede <[email protected]>",
"license": "MIT",
"funding": "https://wiidede.space/sponsor",
"homepage": "https://github.com/wiidede/vue-range-multi#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/wiidede/vue-range-multi.git"
},
"bugs": "https://github.com/wiidede/vue-range-multi/issues",
"keywords": [
"vue",
"vue3",
"range",
"slider",
"vue-range-multi",
"multi thumb"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"./style.css": "./dist/style.css",
"./dist/style.css": "./dist/style.css"
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"scripts": {
"build": "vite build",
"dev": "vite playground --mode play",
"dev:pkg": "vite playground",
"preview": "vite preview playground",
"build:play": "vite build && vite build playground",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "pnpm lint && pnpm typecheck && pnpm build && bumpp",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "vue-tsc --noEmit",
"prepare": "simple-git-hooks"
},
"peerDependencies": {
"vue": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.12.1",
"@antfu/ni": "^0.23.2",
"@antfu/utils": "^0.7.10",
"@iconify-json/carbon": "^1.2.5",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.10.2",
"@unocss/eslint-config": "^0.65.3",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/test-utils": "^2.4.6",
"bumpp": "^9.9.2",
"defu": "^6.1.4",
"eslint": "^9.17.0",
"eslint-plugin-format": "^0.1.3",
"esno": "^4.8.0",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.11",
"pnpm": "^9.15.1",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.7.2",
"unocss": "^0.65.3",
"unplugin-vue-components": "^0.28.0",
"vite": "^6.0.3",
"vite-plugin-dts": "^4.4.0",
"vite-plugin-inspect": "^0.10.6",
"vitest": "^2.1.8",
"vue": "^3.5.13",
"vue-tsc": "^2.2.0"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}