-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.13 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": "0.9.0",
"author": "Frido Emans",
"license": "MIT",
"homepage": "https://github.com/vuereka/vue-arrange",
"repository": {
"type": "git",
"url": "https://github.com/vuereka/vue-arrange"
},
"keywords": [
"vue3",
"vue",
"vue-component",
"component",
"vuejs",
"sortable list",
"list",
"sortable",
"sortablejs",
"draggable",
"drag and drop",
"transition"
],
"type": "module",
"files": [
"dist"
],
"main": "./dist/vue-arrange.umd.cjs",
"module": "./dist/vue-arrange.es.js",
"exports": {
".": {
"import": "./dist/vue-arrange.es.js",
"require": "./dist/vue-arrange.umd.cjs",
"types": "./dist/index.d.ts"
}
},
"types": "./dist/index.d.ts",
"scripts": {
"dev": "vite -c ./vite.config.ts ./example/",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"build_example": "vite build --mode example -c ./vite.config.ts ./example/",
"preview": "vite preview --mode example -c ./vite.config.ts ./example/",
"prepare": "husky install"
},
"dependencies": {
"@vueuse/components": "^9.13.0",
"@vueuse/core": "^9.13.0",
"vue": "^3.0.0"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@types/jsdom": "^20.0.1",
"@types/node": "^18.11.12",
"@vitejs/plugin-vue": "^4.0.0",
"@vitejs/plugin-vue-jsx": "^3.0.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^11.0.0",
"@vue/test-utils": "^2.2.6",
"@vue/tsconfig": "^0.1.3",
"autoprefixer": "^10.4.14",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-vue": "^9.13.0",
"husky": "^8.0.3",
"jsdom": "^20.0.3",
"lint-staged": "^13.2.2",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.23",
"prettier": "^2.8.4",
"prettier-plugin-tailwindcss": "^0.2.4",
"tailwindcss": "^3.3.2",
"typescript": "^5.0.4",
"unplugin-vue-components": "^0.24.1",
"vite": "^4.3.0",
"vitest": "^0.25.6",
"vue-tsc": "^1.6.5"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}