-
-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathpackage.json
111 lines (111 loc) · 3.15 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
102
103
104
105
106
107
108
109
110
111
{
"name": "vue-draggable-next",
"version": "2.2.1",
"description": "Build Draggable component using vue 3",
"main": "dist/vue-draggable-next.cjs.js",
"unpkg": "dist/vue-draggable-next.global.js",
"jsdelivr": "dist/vue-draggable-next.global.js",
"module": "dist/vue-draggable-next.esm-bundler.js",
"types": "dist/vue-draggable-next.d.ts",
"sideEffects": false,
"author": {
"name": "Anish George",
"email": "anishgeorge2690@gmail.com"
},
"scripts": {
"build": "rollup -c rollup.config.js",
"build:dts": "api-extractor run --local --verbose",
"release": "bash scripts/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"size": "size-limit",
"lint": "prettier -c --parser typescript \"{src,__tests__,e2e}/**/*.[jt]s?(x)\"",
"lint:fix": "yarn run lint --write",
"test:types": "tsc --build tsconfig.json",
"test:unit": "jest --coverage",
"test": "yarn run test:types && yarn run test:unit && yarn run build && yarn run build:dts",
"playground:dev": "vite serve",
"playground:start": "vite serve --mode production",
"playground:build": "cross-env NODE_ENV=production vite build"
},
"files": [
"dist/*.js",
"dist/vue-draggable-next.d.ts",
"LICENSE",
"README.md"
],
"keywords": [
"typescript",
"javascript",
"vue",
"vue-next",
"vue3",
"draggable",
"vue-draggable",
"vue-draggable-next"
],
"license": "MIT",
"devDependencies": {
"@microsoft/api-extractor": "7.18.4",
"@rollup/plugin-alias": "^3.1.5",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^2.3.4",
"@size-limit/preset-small-lib": "^4.7.0",
"@tailwindcss/ui": "^0.7.2",
"@types/jest": "^26.0.15",
"@types/jsdom": "^16.2.5",
"@types/sortablejs": "^1.10.7",
"@vitejs/plugin-vue": "^1.4.0",
"@vue/compiler-sfc": "^3.2.2",
"@vue/test-utils": "^2.0.0-beta.8",
"codecov": "^3.8.1",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.2",
"jest": "^26.5.3",
"lint-staged": "^10.5.1",
"pascalcase": "^1.0.0",
"prettier": "^2.1.2",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.29.0",
"size-limit": "^4.7.0",
"sortablejs": "^1.14.0",
"tailwindcss": "^1.9.6",
"ts-jest": "^26.4.1",
"typescript": "^4.3.5",
"vite": "^2.4.1",
"vue": "^3.2.2",
"vuex": "^4.0.2",
"yorkie": "^2.0.0",
"vue-router": "4"
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "node scripts/verifyCommit.js"
},
"lint-staged": {
"*.js": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"size-limit": [
{
"path": "size-checks/basic.js"
}
],
"peerDependencies": {
"sortablejs": "^1.14.0",
"vue": "^3.2.2"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/anish2690/vue-draggable-next.git"
},
"bugs": {
"url": "/~https://github.com/anish2690/vue-draggable-next/issues"
},
"homepage": "/~https://github.com/anish2690/vue-draggable-next#readme"
}