generated from Wxh16144/easy-antd-modal
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
112 lines (112 loc) · 3.06 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
{
"name": "dumi-plugin-color-chunk",
"version": "1.1.2",
"description": "Dumi Plugin - Beautify inline color blocks",
"keywords": [
"dumi"
],
"homepage": "https://github.com/Wxh16144/dumi-plugin-color-chunk#readme",
"bugs": {
"url": "https://github.com/Wxh16144/dumi-plugin-color-chunk/issues/new"
},
"repository": {
"type": "git",
"url": "https://github.com/Wxh16144/dumi-plugin-color-chunk.git"
},
"license": "MIT",
"author": "Wxh16144([email protected])",
"sideEffects": false,
"exports": {
".": {
"types": "./es/index.d.ts",
"import": "./es/index.js",
"require": "./lib/index.js"
},
"./component": {
"types": "./es/components/index.d.ts",
"import": "./es/components/index.js",
"require": "./lib/components/index.js"
}
},
"main": "lib/index.js",
"module": "es/index.js",
"types": "es/index.d.ts",
"files": [
"dist",
"lib",
"es"
],
"scripts": {
"build": "father build",
"build:watch": "father dev",
"ci": "npm run lint && npm run type-check && npm run doctor && npm run build",
"clean": "rm -rf es lib dist coverage playground/.dumi/tmp* .eslintcache .doc",
"dev": "pnpm run --filter playground dev",
"docs:build": "pnpm run --filter playground build",
"doctor": "father doctor",
"lint": "eslint \"{src,test}/**/*.{js,jsx,ts,tsx}\"",
"prepare": "husky install && npm run build",
"prepublishOnly": "npm run doctor && npm run build",
"prettier": "prettier -c --write \"**/**\"",
"release": "semantic-release",
"test": "vitest --passWithNoTests",
"test:coverage": "vitest run --coverage --passWithNoTests",
"test:update": "vitest -u",
"type-check": "tsc -p tsconfig-check.json"
},
"lint-staged": {
"*.{md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{ts,tsx}": [
"eslint --fix",
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@ctrl/tinycolor": "^4",
"@rc-component/color-picker": "1.5.3"
},
"devDependencies": {
"@commitlint/cli": "^17",
"@commitlint/config-conventional": "^17",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/react": "^18",
"@types/react-dom": "^18",
"@umijs/lint": "^4",
"@vitest/coverage-v8": "latest",
"commitlint": "^17",
"concurrently": "^7",
"cross-env": "^7",
"dumi": "^2",
"eslint": "^8",
"fast-glob": "^3.3.1",
"father": "^4",
"husky": "^8",
"lint-staged": "^13",
"prettier": "^2",
"prettier-plugin-organize-imports": "^3",
"prettier-plugin-packagejson": "^2",
"react": "^18",
"react-dom": "^18",
"semantic-release": "^21",
"stylelint": "^15",
"typescript": "^5",
"vitest": "latest"
},
"optionalDependencies": {
"dumi": "^2",
"react": "^18",
"react-dom": "^18"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}