-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.2 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.2 KB
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
{
"name": "@uni-helper/unh",
"type": "module",
"version": "0.2.11",
"packageManager": "pnpm@10.6.2",
"description": "@uni-helper提供的cli封装工具",
"author": "FliPPeDround <flippedround@qq.com>",
"license": "MIT",
"funding": "https://afdian.com/a/flippedround",
"homepage": "https://github.com/uni-helper/unh#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/uni-helper/unh.git"
},
"bugs": "https://github.com/uni-helper/unh/issues",
"keywords": [
"uni",
"uni-app",
"uni-helper",
"cli",
"miniapp"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"bin": {
"unh": "dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch ./src",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepublishOnly": "pnpm build",
"release": "bumpp",
"test": "vitest",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@uni-helper/uni-env": "catalog:",
"cac": "catalog:",
"consola": "catalog:",
"cross-spawn": "catalog:",
"dotenv": "catalog:",
"dotenv-expand": "catalog:",
"fs-extra": "catalog:",
"kolorist": "catalog:",
"local-pkg": "catalog:",
"minidev": "catalog:",
"moment": "catalog:",
"pathe": "catalog:",
"std-env": "catalog:",
"strip-ansi": "catalog:",
"unconfig": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:cli",
"@types/cross-spawn": "catalog:types",
"@types/fs-extra": "catalog:types",
"@types/node": "catalog:types",
"bumpp": "catalog:cli",
"eslint": "catalog:cli",
"lint-staged": "catalog:cli",
"simple-git-hooks": "catalog:cli",
"tinyexec": "catalog:utils",
"tsdown": "catalog:cli",
"typescript": "catalog:cli",
"vitest": "catalog:testing",
"vitest-package-exports": "catalog:testing"
},
"simple-git-hooks": {
"pre-commit": "pnpm i --frozen-lockfile --ignore-scripts --offline && npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}