-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.99 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
{
"name": "ultimate-table",
"version": "1.1.6",
"description": "a responsive column-stackable type-safe table that is made from grid for vue 3",
"author": "jd1378",
"license": "MIT",
"type": "module",
"main": "dist/ultimate-table.umd.js",
"module": "dist/ultimate-table.mjs",
"types": "./dist/entry.d.ts",
"exports": {
".": {
"import": "./dist/ultimate-table.mjs",
"require": "./dist/ultimate-table.umd.cjs",
"types": "./dist/entry.d.ts"
},
"./cjs": {
"default": "./dist/ultimate-table.cjs",
"types": "./dist/entry.d.ts"
},
"./styles/*": "./dist/styles/*"
},
"files": [
"dist/*",
"src/**/*.vue",
"src/utils/*"
],
"keywords": [
"grid",
"table",
"vue",
"responsive",
"grid-table",
"component",
"super",
"awesome",
"ultimate"
],
"scripts": {
"serve": "vite",
"build": "cross-env NODE_ENV=production vite build && vue-tsc -p ./tsconfig.vue.json",
"dev": "npm run serve",
"preview": "vite preview --port 4173",
"type-check": "vue-tsc --noEmit",
"test": "vitest --dom run",
"coverage": "vitest --dom run --coverage",
"prepublishOnly": "npm run build",
"lint": "eslint --ext \".js,.ts,.vue\" --ignore-path .gitignore .",
"docs:gen": "concurrently \"vue-docgen --watch -c docgen.config.cjs\" \"vitepress dev docs\"",
"docs:build": "vue-docgen -c docgen.config.cjs && vitepress build docs",
"docs:serve": "vitepress serve docs",
"docs:preview": "vue-docgen -c docgen.config.cjs && vitepress preview docs"
},
"repository": {
"type": "git",
"url": "[email protected]:jd1378/ultimate-table.git"
},
"devDependencies": {
"@types/node": "^20.14.12",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"@vitejs/plugin-vue": "^5.1.0",
"@vitest/coverage-istanbul": "^0.31.4",
"@vue/compiler-sfc": "^3.4.33",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/test-utils": "^2.4.6",
"@vueuse/core": "^10.11.0",
"concurrently": "^8.2.2",
"cross-env": "^7.0.3",
"es-module-lexer": "^1.5.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier-vue": "^5.0.0",
"eslint-plugin-vue": "^9.27.0",
"globby": "^13.2.2",
"happy-dom": "^9.20.3",
"lodash": "^4.17.21",
"minimist": "^1.2.8",
"postcss-preset-env": "^9.6.0",
"prettier": "^3.3.3",
"prismjs": "^1.29.0",
"shiki": "^0.14.7",
"sucrase": "^3.35.0",
"tailwindcss": "^3.4.6",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"vite": "^5.3.4",
"vite-plugin-static-copy": "^1.0.6",
"vite-tsconfig-paths": "^4.3.2",
"vitepress": "^1.3.1",
"vue": "^3.4.33",
"vue-component-meta": "^2.0.28",
"vue-docgen-cli": "^4.79.0",
"vue-eslint-parser": "^9.4.3",
"vue-inbrowser-compiler-utils": "^4.72.4",
"vue-live": "^2.5.4",
"vue-tsc": "^2.0.28"
},
"peerDependencies": {
"vue": ">=3.3.0"
},
"packageManager": "[email protected]"
}