-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.72 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
88
89
90
91
92
93
94
95
{
"name": "wasmup",
"version": "0.10.5",
"description": "package util for wasm",
"keywords": [
"wasm",
"web",
"webassembly"
],
"homepage": "https://github.com/rainbowatcher/wasmup#readme",
"bugs": {
"url": "https://github.com/rainbowatcher/wasmup/issues"
},
"license": "MIT",
"author": "rainbowatcher <rainbow-w@qq.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/rainbowatcher/wasmup.git"
},
"bin": {
"wasmup": "bin/wasmup.js"
},
"files": [
"bin",
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"scripts": {
"build": "tsdown",
"fmt": "oxfmt .",
"fmt:check": "oxfmt --check .",
"lint": "oxlint . --deny-warnings",
"prepare": "simple-git-hooks",
"changelog": "conventional-changelog -si CHANGELOG.md",
"release": "cross-release -ayx 'pnpm changelog' && pnpm build && npm publish",
"start": "tsx src/cli.ts",
"test": "vitest",
"prepare:playwright": "playwright install chromium",
"coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@inquirer/select": "^5.1.0",
"@rainbowatcher/fs-extra": "^0.7.0",
"@rainbowatcher/path-extra": "^0.7.0",
"cac": "^7.0.0",
"debug": "^4.4.3",
"execa": "^9.6.1",
"find-up-simple": "^1.0.1",
"is-executable": "^2.0.2",
"is-unicode-supported": "^2.1.0",
"lookpath": "^1.2.3",
"smol-toml": "^1.6.0",
"unconfig": "^7.5.0",
"yocto-spinner": "^1.1.0",
"yoctocolors": "^2.1.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^20.4.3",
"@types/debug": "^4.1.12",
"@types/express": "^5.0.6",
"@types/node": "^25.4.0",
"@vitest/coverage-v8": "^4.0.18",
"commitlint": "^20.4.3",
"conventional-changelog-cli": "^5.0.0",
"cross-release-cli": "^0.5.0",
"dedent": "^1.7.2",
"express": "^5.2.1",
"mime": "^4.1.0",
"oxfmt": "^0.39.0",
"oxlint": "^1.54.0",
"playwright": "^1.58.2",
"simple-git-hooks": "^2.13.1",
"tsdown": "^0.21.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
},
"simple-git-hooks": {
"commit-msg": "npx commitlint --edit $1"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"engines": {
"node": ">=20.19.0"
},
"packageManager": "pnpm@10.32.1"
}