-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
66 lines (66 loc) · 1.9 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
{
"name": "src",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"directories": {
"example": "example"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^5.26.0",
"@typescript-eslint/parser": "^5.26.0",
"@vue/eslint-config-prettier": "^7.0.0",
"@vue/eslint-config-typescript": "^10.0.0",
"eslint": "^8.36.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-vue": "^8.2.0",
"husky": "^8.0.1",
"lint-staged": "^12.4.2",
"prettier": "^2.7.1",
"typescript": "4.9.5"
},
"lint-staged": {
"*.js": "eslint --fix",
"*.ts": [
"prettier --write",
"eslint --fix"
],
"*.tsx": [
"prettier --write",
"eslint --cache --fix"
],
"*.vue": [
"prettier --parser=vue --write",
"eslint --fix"
],
"*.md": [
"prettier --write --parser markdown --prose-wrap never"
]
},
"scripts": {
"format": "prettier --write **/src/**/*.{ts,md,vue}",
"typecheck:pkg": "pnpm run -C packages typecheck",
"dev:pkg": "pnpm run -C packages dev",
"build:pkg": "pnpm run -C packages build",
"build:docs": "pnpm run -C docs build",
"dev:docs": "pnpm run dev:pkg & pnpm run -C docs dev",
"prepare": "husky install",
"lint": "pnpm run lint:code && pnpm run lint:type",
"lint:type": "pnpm run typecheck:pkg",
"lint:code": "eslint 'packages/**/*.{ts,tsx,js,vue}'",
"reinstall": "rm -rf node_modules && rm -rf pnpm-lock.yaml && rm -rf docs/node_modules && rm -rf packages/node_modules && pnpm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Volankey/naive-pro-table.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Volankey/naive-pro-table/issues"
},
"homepage": "https://github.com/Volankey/naive-pro-table#readme"
}