-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
91 lines (91 loc) · 2.95 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
{
"name": "vueye-table",
"version": "2.0.0-alpha.14",
"private": false,
"description": "Vue data table",
"author": "Brahim Boussadjra",
"repository": "https://github.com/boussadjra/vueye-table",
"license": "MIT",
"scripts": {
"docs:dev": "pnpm --filter docs dev",
"docs:build": "pnpm --filter docs build",
"docs:generate": "pnpm --filter docs generate",
"docs:preview": "pnpm --filter docs preview",
"story:dev": "pnpm --filter vueye-table story:dev",
"story:build": "pnpm --filter vueye-table story:build",
"story:preview": "pnpm --filter vueye-table story:preview",
"nuxt:dev": "pnpm --filter nuxt-vueye-table dev",
"nuxt:build": "pnpm --filter nuxt-vueye-table prepack",
"dev": "pnpm --filter vueye-table dev",
"build": "pnpm --filter vueye-table build",
"test:unit": "pnpm --filter vueye-table test:unit",
"test:coverage": "pnpm --filter vueye-table test:coverage",
"commit": "git-cz",
"release": "bumpp package.json packages/**/package.json docs/package.json --tag --tag-name v${version}",
"pub:release": "cd packages/vueye-table && pnpm pub:release",
"up": "taze -r -w",
"clean-all": "rimraf node_modules && rimraf packages/*/node_modules && rimraf docs/node_modules",
"prepare": "pnpm simple-git-hooks",
"lint": "eslint . --ignore-path .gitignore",
"lint:fix": "eslint . --fix --ignore-path .gitignore",
"format": "prettier --write .",
"analyse": "pnpm --filter vueye-table analyse"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@antfu/ni": "^0.21.12",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.11.25",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vue/tsconfig": "^0.4.0",
"bumpp": "^9.4.0",
"commitizen": "^4.3.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsonc": "^2.13.0",
"eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-vue": "^9.22.0",
"lint-staged": "^14.0.1",
"pathe": "^1.1.2",
"pnpm": "^8.15.4",
"rimraf": "^5.0.5",
"semver": "^7.6.0",
"simple-git-hooks": "^2.10.0",
"taze": "^0.11.4",
"tsx": "^3.14.0",
"typescript": "^5.4.2",
"unbuild": "^2.0.0",
"vitest": "^0.34.6"
},
"packageManager": "[email protected]",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"commit-msg": "pnpm commitlint --edit ${1}"
},
"lint-staged": {
"*.{js,ts,vue}": [
"pnpm run lint:fix"
]
},
"keywords": [
"vue",
"vue3",
"vue3 component",
"vue3 table",
"vue3 data table",
"vue3 datatable",
"vueye-table"
]
}