-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
69 lines (69 loc) · 2.19 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
{
"name": "vue3-grid-drag-resize",
"version": "0.12.3",
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://xachary.github.io/vue3-grid-drag-resize/",
"repository": {
"type": "git",
"url": "https://github.com/xachary/vue3-grid-drag-resize"
},
"scripts": {
"dev": "vite --port 7173",
"build": "run-p type-check \"build-only {@}\" --",
"build-demo": "run-p type-check \"build-only --mode demo {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build --force",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .eslintignore",
"format": "prettier --write src/",
"prepare": "husky",
"docs:dev": "vitepress dev src/docs --port 6173",
"docs:build": "vitepress build src/docs",
"docs:preview": "vitepress preview src/docs --port 6173"
},
"dependencies": {
"vue": "^3.4.21",
"vue3-grid-drag-resize": "^0.12.3"
},
"devDependencies": {
"@commitlint/cli": "19.2.1",
"@commitlint/config-conventional": "19.1.0",
"@rushstack/eslint-patch": "^1.3.3",
"@tsconfig/node20": "^20.1.2",
"@types/node": "^20.11.28",
"@vitejs/plugin-vue": "^5.0.4",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^12.0.0",
"@vue/tsconfig": "^0.5.1",
"dayjs": "^1.11.13",
"eslint": "^8.49.0",
"eslint-plugin-vue": "^9.17.0",
"git-rev-sync": "^3.0.2",
"husky": "9.0.11",
"less": "4.2.0",
"npm-run-all2": "^6.1.2",
"postcss": "^8.4.35",
"postcss-html": "^1.6.0",
"postcss-less": "^6.0.0",
"postcss-scss": "^4.0.9",
"prettier": "^3.0.3",
"stylelint": "^16.10.0",
"stylelint-config-property-sort-order-smacss": "^10.0.0",
"stylelint-config-recommended-vue": "^1.5.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"stylelint-prettier": "^5.0.2",
"typescript": "~5.4.0",
"vite": "^5.1.6",
"vite-plugin-css-injected-by-js": "^3.5.2",
"vite-plugin-dts": "^4.2.3",
"vitepress": "^1.4.1",
"vue-tsc": "^2.0.6"
}
}