-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.26 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
{
"name": "@uni-helper/hbuilderx-cli",
"type": "module",
"version": "0.0.2",
"packageManager": "[email protected]",
"description": "ES module for HBuilderX cli",
"license": "MIT",
"repository": "https://github.com/uni-helper/hbuilderx-cli",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"bin": {
"hbx": "./dist/cli.mjs",
"hbuilderx": "./dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"hbx": "esno src/cli.ts",
"build": "unbuild",
"dev": "vitest dev",
"prepublishOnly": "pnpm run build",
"release": "bumpp",
"test": "pnpm lint & vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"dependencies": {
"c12": "^1.4.1",
"execa": "^7.1.1",
"std-env": "^3.3.2"
},
"devDependencies": {
"@antfu/eslint-config": "^0.38.5",
"@types/node": "^18.15.13",
"@vitest/coverage-c8": "^0.30.1",
"bumpp": "^9.1.0",
"eslint": "^8.39.0",
"esno": "^0.16.3",
"typescript": "^5.0.4",
"unbuild": "^1.2.1",
"vite": "^4.3.1",
"vitest": "^0.30.1"
}
}