-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.25 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
{
"name": "@lucaconlaq/psst",
"repository": {
"type": "git",
"url": "https://github.com/lucaconlaq/psst"
},
"version": "0.7.2",
"type": "module",
"bin": {
"psst": "./psst"
},
"scripts": {
"build": "tsc",
"test": "vitest",
"check": "tsc --noEmit",
"format": "biome format --write src test",
"lint": "biome lint --write src test",
"release:minor": "npm version minor --no-git-tag-version && npm run build && npm publish --access public",
"release:patch": "npm version patch --no-git-tag-version && npm run build && npm publish --access public",
"release:major": "npm version major --no-git-tag-version && npm run build && npm publish --access public"
},
"dependencies": {
"@inkjs/ui": "^1.0.0",
"commander": "^11.1.0",
"ink": "^4.4.1",
"speakeasy": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/mock-fs": "^4.13.4",
"@types/node": "^20.11.24",
"@types/react": "^19.1.2",
"@types/speakeasy": "^2.0.10",
"ink-testing-library": "^4.0.0",
"mock-fs": "^5.5.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"main": "index.js",
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"files": [
"dist",
"psst"
]
}