-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.1 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
{
"name": "vue-arrange",
"private": false,
"version": "1.3.3",
"author": "Frido Emans",
"license": "MIT",
"homepage": "https://github.com/vuereka/vue-arrange",
"repository": {
"type": "git",
"url": "git+https://github.com/vuereka/vue-arrange.git"
},
"keywords": [
"vue3",
"vue",
"vue-component",
"component",
"vuejs",
"sortable list",
"list",
"sortable",
"sortablejs",
"draggable",
"drag and drop",
"transition"
],
"files": [
"dist"
],
"main": "./dist/vue-arrange.umd.cjs",
"module": "./dist/vue-arrange.es.js",
"types": "./dist/index.d.ts",
"styles": "./dist/vue-arrange.css",
"exports": {
".": {
"import": "./dist/vue-arrange.es.js",
"require": "./dist/vue-arrange.umd.cjs",
"types": "./dist/index.d.ts"
},
"./dist/vue-arrange.css": "./dist/vue-arrange.css"
},
"scripts": {
"dev": "vite -c ./vite.config.ts ./example/",
"build": "vite build && vue-tsc --declaration --emitDeclarationOnly; pnpm run build-demo",
"build-demo": "vite build --mode example -c ./vite.config.ts ./example/",
"preview": "vite preview --mode example -c ./vite.config.ts ./example/",
"prepare": "husky"
},
"dependencies": {
"@vueuse/components": "^11.2.0",
"@vueuse/core": "^11.2.0",
"vue": "^3.5.12"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.9.0",
"@vitejs/plugin-vue": "^5.1.5",
"@vitejs/plugin-vue-jsx": "^4.1.0",
"@vue/test-utils": "^2.4.6",
"@vue/tsconfig": "^0.6.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.0.0",
"eslint-plugin-vue": "^9.31.0",
"globals": "^15.12.0",
"husky": "^9.1.7",
"jsdom": "^25.0.1",
"lint-staged": "^15.2.10",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.49",
"prettier": "^3.3.3",
"tailwindcss": "^3.4.14",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"unplugin-vue-components": "^0.27.4",
"vite": "^5.4.11",
"vitest": "^2.1.4",
"vue-tsc": "^2.1.10"
},
"lint-staged": {
"*": "your-cmd"
},
"type": "module"
}