-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
122 lines (122 loc) · 3.2 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
112
113
114
115
116
117
118
119
120
121
122
{
"name": "@xpyjs/gantt",
"description": "A high-performance vue gantt component.",
"author": "jeremyjone",
"license": "MIT",
"private": false,
"version": "2.1.14",
"preview": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"homepage": "https://docs.xiaopangying.com/gantt",
"bugs": {
"url": "https://github.com/xpyjs/gantt/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/xpyjs/gantt.git"
},
"keywords": [
"vue",
"vue3",
"gantt",
"vue-gantt"
],
"files": [
"dist",
"types",
"src",
"package.json",
"README.md"
],
"main": "./dist/index.umd.js",
"module": "./dist/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js"
},
"./dist/index.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
},
"./index.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"scripts": {
"dev": "vite",
"serve": "vite preview",
"build": "vite build",
"build:debug": "vue-tsc --noEmit && vite build --debug",
"dts": "vue-tsc --declaration --emitDeclarationOnly --declarationDir ./types",
"cz": "git-cz",
"release": "standard-version",
"lint": "eslint src/**/*.{vue,js,ts,jsx,tsx} --fix",
"lint:test": "lint-staged",
"lint:create": "eslint --init",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "husky install",
"push": "git push --follow-tags origin master"
},
"lint-staged": {
"*.{vue,js,ts,jsx,tsx}": "eslint --fix"
},
"dependencies": {
"@vueuse/core": "^10.0.0",
"@vueuse/integrations": "^10.1.2",
"dayjs": "^1.11.7",
"lodash": "^4.17.21",
"sortablejs": "^1.15.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/lodash": "^4.14.192",
"@types/sortablejs": "^1.15.1",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@vitejs/plugin-vue": "^4.1.0",
"@vitest/coverage-istanbul": "^0.31.1",
"@vue/test-utils": "^2.3.2",
"cz-git": "^1.6.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^9.10.0",
"happy-dom": "^9.18.3",
"husky": "^8.0.3",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"sass": "^1.61.0",
"standard-version": "^9.5.0",
"typescript": "*",
"vite": "^4.2.1",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.31.1",
"vue": "3.3.4",
"vue-tsc": "^1.2.0"
},
"standard-version": {
"scripts": {
"pretag": "bash ./scripts/update-doc.sh"
}
},
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
}
}