forked from bcakmakoglu/revue-draggable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.59 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
{
"name": "@braks/revue-draggable",
"version": "0.5.0",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/bcakmakoglu/revue-draggable"
},
"keywords": [
"vue",
"vue3",
"draggable",
"component",
"directive",
"composition api"
],
"license": "MIT",
"author": "Burak Cakmakoglu<https://github.com/bcakmakoglu>",
"homepage": "https://draggable.vueflow.dev",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/revue-draggable.mjs",
"require": "./dist/revue-draggable.js"
}
},
"main": "./dist/revue-draggable.cjs.js",
"types": "./dist/index.d.ts",
"module": "./dist/revue-draggable.es.js",
"unpkg": "./dist/revue-draggable.iife.js",
"jsdelivr": "./dist/revue-draggable.iife.js",
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"dev": "vue-tsc --noEmit && vite --port 3000",
"build": "vue-tsc --noEmit && vite build",
"build:demo": "pnpm && pnpm --cwd vue2-demo && pnpm --cwd vue2-demo build",
"build:dist": "vite --config vite.config.dist.ts build && tsc && rm -rf tmp",
"serve": "vite preview --port 3000",
"prepublishOnly": "pnpm build:dist",
"test": "cypress run",
"lint:js": "eslint --ext \".js,.jsx,.ts,.tsx\" --fix --ignore-path .gitignore .",
"lint": "pnpm lint:js",
"ci": "start-server-and-test dev http-get://localhost:3000 test"
},
"dependencies": {
"@vueuse/core": "^10.7.2",
"vue-demi": "latest"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@types/node": "^20.11.17",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/compiler-sfc": "^3.0.5",
"cypress": "^7.7.0",
"eslint": "^8.51.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-cypress": "^2.11.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^9.0.11",
"np": "^7.5.0",
"prettier": "^2.8.8",
"start-server-and-test": "^1.12.6",
"typescript": "^4.5.2",
"vite": "^5.1.2",
"vite-plugin-windicss": "^1.2.7",
"vite-svg-loader": "^2.1.0",
"vue": ">=3.0.5",
"vue-router": "4",
"vue-tsc": "^0.29.8",
"vue2": "npm:vue@2",
"windicss": "^3.1.5"
},
"peerDependencies": {
"@vue/composition-api": "^1.0.0-rc.1",
"vue": "^2.0.0 || >=3.0.5"
},
"peerDependenciesMeta": {
"@vue/composition-api": {
"optional": true
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"np": {
"branch": "master",
"message": "v%s",
"testScript": "ci"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}