-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 742 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 742 Bytes
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
{
"name": "lt-env-selector-tool-cli",
"version": "1.0.0",
"module": "src/index.ts",
"type": "module",
"private": true,
"scripts": {
"start": "bun run src/index.ts",
"build": "./build.sh",
"bundle": "./bundle.sh",
"test": "bun test",
"test:coverage": "bun test --coverage",
"format-check": "prettier --check ./src",
"format-fix": "prettier --write ./src"
},
"devDependencies": {
"@types/bun": "latest",
"@types/qrcode": "^1.5.6",
"prettier": "^3.7.4"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"@inquirer/prompts": "^8.0.2",
"cheerio": "^1.1.2",
"crypto-es": "^3.1.2",
"ora": "^9.0.0",
"qrcode": "^1.5.4",
"yaml": "^2.8.2"
}
}