-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.47 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.47 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
{
"name": "@fei1yang/clash2sing-box",
"version": "0.1.7",
"keywords": [
"clash",
"converter",
"proxy",
"sing-box"
],
"license": "MIT",
"author": "fei1yang",
"type": "module",
"exports": {
".": "./dist/index.cjs"
},
"scripts": {
"start": "bun run src/index.ts",
"build": "esbuild src/index.ts --bundle --platform=node --outfile=dist/index.cjs --tree-shaking=true --minify --sourcemap --tsconfig=tsconfig.build.json",
"build:watch": "pnpm run build --watch",
"coverage": "make-coverage-badge --output-path ./badges/coverage.svg",
"knip": "knip",
"lint": "oxfmt . && oxlint --type-aware . && eslint .",
"lint:fix": "oxfmt --write. && oxlint --type-aware --write . && eslint . --fix",
"test": "vitest run",
"typecheck": "tsgo --noEmit"
},
"dependencies": {
"commander": "^14.0.3",
"deepmerge-ts": "^7.1.5",
"yaml": "^2.8.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@antfu/eslint-config": "^8.2.0",
"@types/bun": "^1.3.13",
"@typescript/native-preview": "^7.0.0-dev.20260508.1",
"@vitest/coverage-v8": "^4.1.5",
"esbuild": "^0.28.0",
"eslint": "^10.3.0",
"eslint-plugin-format": "^2.0.1",
"eslint-plugin-oxlint": "^1.63.0",
"jiti": "^2.7.0",
"knip": "^6.12.1",
"make-coverage-badge": "^1.2.0",
"oxfmt": "^0.48.0",
"oxlint": "^1.63.0",
"oxlint-tsgolint": "^0.22.1",
"vitest": "^4.1.5"
},
"peerDependencies": {
"typescript": "^6.0.3"
}
}