-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.21 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
{
"name": "@ohbug/cli",
"type": "module",
"version": "1.1.3",
"description": "Command line utility to work with Ohbug",
"keywords": [
"ohbug",
"source-map",
"source-maps",
"cli"
],
"license": "Apache-2.0",
"author": "chenyueban <jasonchan0527@gmail.com>",
"homepage": "https://github.com/ohbug-org/ohbug-cli",
"bugs": {
"url": "https://github.com/ohbug-org/ohbug-cli/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ohbug-org/ohbug-cli"
},
"engines": {
"node": ">=14.0.0"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"bin": {
"ohbug": "dist/ohbug.cjs"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "unbuild",
"dev": "unbuild --stub",
"test": "vitest",
"update:deps": "pnpm update -i -r --latest",
"release": "npm run build && release-it",
"preinstall": "npx only-allow pnpm",
"lint": "eslint . --fix",
"prepare": "husky install"
},
"dependencies": {
"chalk": "4.1.2",
"fast-glob": "^3.2.11",
"form-data": "^4.0.0",
"ora": "5.4.1",
"prompts": "^2.4.1"
},
"devDependencies": {
"@chenyueban/eslint-config": "^1.0.11",
"@chenyueban/tsconfig": "^2.1.0",
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"@release-it/conventional-changelog": "^5.0.0",
"@types/express": "^4.17.13",
"@types/glob": "^7.1.4",
"@types/multer": "^1.4.7",
"@types/node": "^18.0.0",
"@types/prompts": "^2.0.14",
"@types/rimraf": "^3.0.2",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.17.0",
"express": "^4.17.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.1",
"multer": "^1.4.5-lts.1",
"release-it": "^15.0.0",
"rimraf": "^3.0.2",
"typescript": "^4.4.3",
"unbuild": "^0.7.4",
"vitest": "^0.15.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}