-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.65 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
{
"name": "wifikeys",
"version": "0.0.8",
"description": "Retrieve saved WiFi passwords across Linux, Windows, and macOS systems.",
"type": "module",
"private": false,
"main": "./dist/bin.js",
"bin": {
"wifikeys": "./dist/bin.js"
},
"files": [
"dis/bin.js"
],
"author": "FADHILI Josue <[email protected]>",
"scripts": {
"build": "esbuild --bundle src/bin.ts --platform=node --outfile=dist/bin.js --packages=external --format=esm",
"dev": "run-p dev:*",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"dev:node": "node --watch dist/bin.js",
"dev:esbuild": "pnpm run build --watch",
"test": "vitest run",
"lint": "tsc && xo --fix",
"format": "prettier --write ./src/**/*.ts",
"ci": "pnpm run build",
"release": "pnpm run ci && changeset publish",
"unlink-cli": "pnpm unlink --global",
"local-link": "pnpm build && pnpm unlink --global | true && pnpm run build && pnpm link --global"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FADHILI-Josue/wifikeys.git"
},
"packageManager": "[email protected]",
"bugs": {
"url": "https://github.com/FADHILI-Josue/wifikeys/issues"
},
"homepage": "https://github.com/FADHILI-Josue/wifikeys#readme",
"keywords": [
"wifi",
"wifi keys",
"wifi password",
"password"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.11",
"esbuild": "^0.20.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"xo": "^0.58.0"
},
"dependencies": {
"@changesets/cli": "^2.27.1",
"commander": "^12.0.0",
"consola": "^3.2.3",
"ora": "^8.0.1"
}
}