-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.55 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
{
"name": "phio",
"version": "0.3.2",
"description": "A CLI tool to manage your PocketHost instances",
"repository": {
"type": "git",
"url": "https://github.com/pockethost/phio.git"
},
"homepage": "https://github.com/pockethost/phio",
"keywords": [
"cli",
"pocketbase",
"pockethost"
],
"author": "Ben Allfree",
"license": "MIT",
"bugs": {
"url": "https://github.com/pockethost/phio/issues"
},
"main": "src/index.ts",
"module": "src/index.ts",
"type": "module",
"types": "src/index.ts",
"devDependencies": {
"@changesets/cli": "^2.27.10",
"@types/bun": "latest",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.5.5",
"prettier-plugin-organize-imports": "^4.0.0"
},
"scripts": {
"dev": "tsx ./src/cli.ts"
},
"bin": {
"phio": "src/cli.ts"
},
"files": [
"src"
],
"dependencies": {
"@inquirer/prompts": "^5.5.0",
"@s-libs/micro-dash": "^18.0.0",
"@samkirkland/ftp-deploy": "github:benallfree/ftp-deploy#132389e",
"@sentool/fetch-event-source": "^0.5.0",
"bottleneck": "^2.19.5",
"chokidar": "^4.0.0",
"commander": "^12.1.0",
"email-validator": "^2.0.4",
"env-paths": "^3.0.0",
"env-var": "^7.5.0",
"event-stream": "^4.0.1",
"fs-extra": "^11.2.0",
"multimatch": "^7.0.0",
"ora": "^8.1.0",
"pocketbase": "^0.21.5",
"tsx": "^4.19.3",
"typescript": "^5.6.2"
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5",
"plugins": [
"prettier-plugin-organize-imports"
]
}
}