-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
96 lines (96 loc) · 2.49 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
{
"name": "redbud",
"version": "1.6.0",
"description": "A bundless/bundle build tool",
"homepage": "https://github.com/walrusjs/redbud#readme",
"bugs": {
"url": "https://github.com/walrusjs/redbud/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/walrusjs/redbud.git"
},
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"redbud": "bin/redbud.js"
},
"files": [
"dist",
"bin",
"compiled"
],
"scripts": {
"build": "pnpm tsc",
"dev": "pnpm build --watch",
"format": "prettier --write .",
"prepare": "husky install",
"release": "redbud run 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.17",
"@umijs/bundler-utils": "^4.0.17",
"@umijs/bundler-webpack": "^4.0.17",
"@umijs/core": "^4.0.17",
"@umijs/utils": "^4.0.17",
"@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",
"tsx": "^3.8.2",
"typescript": "~4.8.4",
"typescript-transform-paths": "3.4.6",
"v8-compile-cache": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"@commitlint/config-conventional": "^17.1.0",
"@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",
"git-repo-info": "^2.1.1",
"husky": "^8.0.1",
"jest": "^27",
"jest-mock-process": "^1.5.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.0",
"prettier-plugin-packagejson": "^2.2.18",
"rimraf": "^3.0.2",
"ts-node": "^10",
"zx": "^7.0.8"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public"
},
"authors": [
"wangxingkang <[email protected]> (https://github.com/wangxingkang)"
]
}