forked from umijs/father
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.67 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
{
"name": "father",
"version": "4.5.1",
"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": "tsx 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.39.1",
"@umijs/babel-preset-umi": "^4.3.27",
"@umijs/bundler-utils": "^4.3.27",
"@umijs/bundler-webpack": "^4.3.27",
"@umijs/case-sensitive-paths-webpack-plugin": "^1.0.1",
"@umijs/core": "^4.3.27",
"@umijs/utils": "^4.3.27",
"@vercel/ncc": "0.33.3",
"babel-plugin-dynamic-import-node": "2.3.3",
"babel-plugin-module-resolver": "4.1.0",
"babel-plugin-styled-components": "2.1.4",
"babel-plugin-transform-define": "2.0.1",
"enhanced-resolve": "5.9.3",
"esbuild": "0.17.19",
"fast-glob": "3.2.12",
"file-system-cache": "2.0.0",
"loader-runner": "4.2.0",
"minimatch": "3.1.2",
"piscina": "^4.6.1",
"tsconfig-paths": "4.0.0",
"typescript": "~5.3.3",
"typescript-transform-paths": "3.4.6",
"v8-compile-cache": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.6.1",
"@commitlint/config-conventional": "^17.6.1",
"@swc/core": "^1.3.53",
"@types/jest": "^27",
"@types/loader-runner": "2.2.4",
"@types/minimatch": "3.0.5",
"@types/node": "^18.15.13",
"@umijs/test": "^4.0.68",
"git-repo-info": "^2.1.1",
"husky": "^8.0.3",
"jest": "^27",
"jest-mock-process": "^1.5.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"prettier-plugin-organize-imports": "^3.2.2",
"prettier-plugin-packagejson": "^2.4.3",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"tsx": "^4.16.3",
"zx": "^4.3.0"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"authors": [
"chencheng <[email protected]> (https://github.com/sorrycc)",
"PeachScript <[email protected]> (https://github.com/PeachScript)"
]
}