forked from umijs/father
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
95 lines (95 loc) · 2.51 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
{
"name": "father",
"version": "4.1.5",
"description": "A bundless/bundle build tool",
"homepage": "https://github.com/umijs/father#readme",
"bugs": "https://github.com/umijs/father/issues",
"repository": {
"type": "git",
"url": "https://github.com/umijs/father"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"father": "bin/father.js"
},
"files": [
"dist",
"bin",
"compiled"
],
"scripts": {
"build": "pnpm tsc",
"dev": "pnpm build --watch",
"format": "prettier --write .",
"prepare": "husky install",
"release": "esno scripts/release.ts",
"test": "jest",
"test:cov": "jest --collectCoverage"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{js,md,json}": [
"prettier --write --no-error-on-unmatched-pattern"
],
"*.ts": [
"prettier --parser=typescript --write"
]
},
"dependencies": {
"@microsoft/api-extractor": "7.34.3",
"@umijs/babel-preset-umi": "^4.0.52",
"@umijs/bundler-utils": "^4.0.52",
"@umijs/bundler-webpack": "^4.0.52",
"@umijs/core": "^4.0.52",
"@umijs/utils": "^4.0.52",
"@vercel/ncc": "0.33.3",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-react-require": "3.1.3",
"babel-plugin-transform-define": "2.0.1",
"fast-glob": "3.2.12",
"file-system-cache": "2.0.0",
"loader-runner": "4.2.0",
"minimatch": "3.1.2",
"tsconfig-paths": "4.0.0",
"typescript": "~4.8.4",
"typescript-transform-paths": "3.4.6",
"v8-compile-cache": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@swc/core": "^1.3.9",
"@types/jest": "^27",
"@types/loader-runner": "2.2.4",
"@types/minimatch": "3.0.5",
"@types/node": "^18.0.0",
"@umijs/test": "^4.0.17",
"esno": "^0.16.3",
"git-repo-info": "^2.1.1",
"husky": "^8.0.1",
"jest": "^27",
"jest-mock-process": "^1.5.1",
"lint-staged": "^13.0.1",
"prettier": "^2.6.2",
"prettier-plugin-organize-imports": "^3.0.0",
"prettier-plugin-packagejson": "^2.2.18",
"rimraf": "^3.0.2",
"ts-node": "^10",
"zx": "^4"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"authors": [
"chencheng <[email protected]> (https://github.com/sorrycc)",
"PeachScript <[email protected]> (https://github.com/PeachScript)"
]
}