-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
58 lines (58 loc) · 1.57 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
{
"name": "homebrew-install",
"version": "1.0.0",
"description": "Install Homebrew (on macOS or Linux)",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "NODE_OPTIONS=--openssl-legacy-provider dumi dev",
"build": "NODE_OPTIONS=--openssl-legacy-provider dumi build",
"prettier": "prettier --write \"**/*.{js,jsx,tsx,ts,less,md,json}\"",
"make": "node ./bin/update.js"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,less,md,json}": [
"prettier --write"
],
"*.ts?(x)": [
"prettier --parser=typescript --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ineo6/homebrew-install.git"
},
"author": "ineo6",
"license": "BSD-2-Clause",
"bugs": {
"url": "https://github.com/ineo6/homebrew-install/issues"
},
"homepage": "https://github.com/ineo6/homebrew-install#readme",
"devDependencies": {
"@umijs/plugin-helmet": "^1.1.4",
"babel-plugin-import": "^1.13.3",
"chalk": "^4.1.0",
"download-git-repo": "^3.0.2",
"dumi": "^1.1.50",
"fs-extra": "^9.0.1",
"lint-staged": "^10.0.7",
"ora": "^5.3.0",
"prettier": "^1.19.1",
"sitemap": "^6.3.5",
"yorkie": "^2.0.0"
},
"dependencies": {
"@ant-design/icons": "^4.5.0",
"antd": "^4.13.1"
},
"pnpm": {
"patchedDependencies": {
"@umijs/[email protected]": "patches/@[email protected]",
"@umijs/[email protected]": "patches/@[email protected]"
}
}
}