-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·134 lines (134 loc) · 4.32 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
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "data-grid-vue",
"version": "3.3.1",
"type": "module",
"private": false,
"description": "Customizable native Vue3 data grid with only a few first-party dependencies. Leverages a flat html structure and CSS grid to allow full layout control.",
"license": "MIT",
"author": {
"name": "Nicholas Ruffing",
"email": "nicholasruffing70@gmail.com"
},
"homepage": "https://datagridvue.com",
"repository": {
"type": "git",
"url": "git+https://github.com/nruffing/data-grid-vue.git"
},
"bugs": "https://github.com/nruffing/data-grid-vue/issues/new?assignees=nruffing&labels=bug&projects=&template=bug_report.md&title=%5Bbug%5D",
"keywords": [
"datagrid",
"data grid",
"data-grid",
"grid",
"table",
"vuejs",
"vue",
"vue3"
],
"workspaces": [
"vuepress",
"dev-app"
],
"packageManager": "pnpm@8.10.5",
"engines": {
"node": ">=18"
},
"files": [
"dist/*",
"lib/**/*",
"LICENSE",
"README.md"
],
"exports": {
".": {
"types": "./dist/types/main.d.ts",
"import": "./dist/data-grid-vue.js",
"require": "./dist/data-grid-vue.umd.cjs"
},
"./style": "./dist/style.css"
},
"types": "./dist/types/main.d.ts",
"main": "dist/data-grid-vue.umd.js",
"module": "dist/data-grid-vue.mjs",
"browser": "dist/data-grid-vue.umd.js",
"scripts": {
"dev": "pnpm --parallel dev",
"build": "pnpm type-check && pnpm build-only && pnpm build-types",
"build-types": "vue-tsc --declaration --emitDeclarationOnly",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"ci-all": "pnpm i && pnpm run --recursive build",
"test": "vitest",
"test:unit": "vitest --run",
"format": "pnpm exec prettier --write \"./**/*.{ts,json,vue,css}\"",
"upgrade-all": "ncu --upgrade",
"check-upgrade-all": "clear && ncu",
"prepare": "husky install && chmod ug+x .husky/*",
"compile-readme": "./scripts/readme-compile/markdown-include.cjs",
"typedoc": "pnpm run build && pnpm exec tsc --project ./scripts/typedoc/tsconfig.typedoc-vue.json && pnpm exec typedoc --options ./scripts/typedoc/typedoc.json",
"spellcheck": "pnpm cspell .",
"dotnet-doc": "pnpm exec tsc --project ./scripts/dotnet-doc-download/tsconfig.dotnet-doc-download.json && node ./scripts/dotnet-doc-download/dotnet-doc-download.js",
"request-index": "pnpm exec tsc --project ./scripts/request-index/tsconfig.request-index.json && node ./scripts/request-index/request-index.js",
"axe": "pnpm run -r build && pnpm exec tsc --project ./scripts/axe/tsconfig.axe.json && node ./scripts/axe/axe.js",
"docs:dev": "pnpm run --filter './vuepress' dev",
"docs:build": "pnpm run --filter './vuepress' build",
"dev-app:dev": "pnpm run --filter './dev-app' dev",
"dev-app:build": "pnpm run --filter './dev-app' build"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"devDependencies": {
"@axe-core/cli": "^4.8.5",
"@azure/communication-email": "^1.0.0",
"@azure/identity": "^4.0.1",
"@azure/keyvault-secrets": "^4.8.0",
"@babel/types": "^7.24.0",
"@tsconfig/node18": "^18.2.2",
"@types/adm-zip": "^0.5.5",
"@types/debounce": "^1.2.4",
"@types/node": "^18.11.9",
"@vitejs/plugin-vue": "^5.0.4",
"@vitest/browser": "^1.3.1",
"@vue/tsconfig": "^0.5.1",
"@vuepress/utils": "2.0.0-rc.8",
"adm-zip": "^0.5.10",
"ansicolor": "^2.0.3",
"cspell": "^8.6.0",
"dotenv": "^16.4.5",
"googleapis": "^133.0.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"markdown-include": "^0.4.3",
"npm-check-updates": "^16.14.15",
"prettier": "^3.2.5",
"rollup-plugin-delete": "^2.0.0",
"tslib": "^2.6.2",
"typedoc": "0.25.7",
"typedoc-plugin-markdown": "4.0.0-next.53",
"typedoc-plugin-mdn-links": "^3.1.17",
"typedoc-plugin-vue": "^1.1.0",
"typescript": "5.3.3",
"vite": "^5.1.5",
"vitest": "^1.3.1",
"vue": "^3.4.21",
"vue-router": "^4.3.0",
"vue-tsc": "^2.0.6",
"webdriverio": "^8.33.1"
},
"dependencies": {
"dragon-drop-vue": "^2.1.1",
"native-event-vue": "^1.4.1"
},
"lint-staged": {
"*.{ts,json,vue,css}": "prettier --write"
},
"pnpm": {
"overrides": {
"glob-parent@<5.1.2": ">=5.1.2",
"follow-redirects@<1.15.4": ">=1.15.4",
"ip@<1.1.9": ">=1.1.9",
"ip@=2.0.0": ">=2.0.1"
}
}
}