-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.03 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "wgconfgen",
"version": "0.0.1",
"description": "WireGuard Config Generator",
"keywords": [
"wireguard",
"wg",
"vpn",
"wg-quick",
"networking"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.js",
"bin": {
"wgconfgen": "dist/cli.js"
},
"scripts": {
"preinstall": "pnpx only-allow pnpm",
"build": "vite build",
"style": "npm run lint && npm run prettier",
"lint": "eslint . --fix --cache",
"lint:ci": "eslint . --cache",
"prettier": "prettier --write .",
"prettier:ci": "prettier --check .",
"test": "pnpm run tsc && pnpm run test:ci",
"test:ci": "vitest",
"coverage": "vitest run --coverage",
"tsc": "tsc",
"type-coverage": "type-coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Logicer16/wgconfgen.git"
},
"author": "logicer",
"license": "NIT",
"bugs": {
"url": "https://github.com/Logicer16/wgconfgen/issues"
},
"homepage": "https://github.com/Logicer16/wgconfgen#readme",
"engines": {
"node": "^20.11.0",
"pnpm": ">=8.10.0"
},
"devDependencies": {
"@codecov/vite-plugin": "^1.4.0",
"@logicer/eslint-plugin": "^4.0.3",
"@logicer/prettier-config": "^2.1.0",
"@logicer/tsconfig": "^5.0.1",
"@types/eslint": "8",
"@types/node": "^22.9.1",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^8.57.1",
"eslint-import-resolver-typescript": "^3.6.3",
"prettier": "^3.3.3",
"ts-plugin-type-coverage": "^2.29.7",
"type-coverage": "^2.29.7",
"typescript": "~5.4.5",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-externalize-deps": "^0.8.0",
"vitest": "^2.1.5"
},
"typeCoverage": {
"atLeast": 100,
"cache": true,
"strict": true,
"ignoreCatch": true,
"reportSemanticError": true
},
"packageManager": "[email protected]+sha256.cea6d0bdf2de3a0549582da3983c70c92ffc577ff4410cbf190817ddc35137c2",
"dependencies": {
"yaml": "^2.6.1"
}
}