-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
122 lines (122 loc) · 3.44 KB
/
package.json
File metadata and controls
122 lines (122 loc) · 3.44 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"author": "Internxt <hello@internxt.com>",
"version": "1.6.3",
"description": "Internxt CLI to manage your encrypted storage",
"scripts": {
"build": "yarn clean && tsc",
"clean": "rimraf dist coverage tsconfig.tsbuildinfo oclif.manifest.json",
"lint": "eslint .",
"format": "prettier --write **/*.{js,jsx,tsx,ts}",
"postpack": "rimraf oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"prepare": "husky || true",
"test": "yarn test:unit",
"test:unit": "vitest run --coverage",
"test:watch": "vitest watch",
"dev:webdav": "nodemon -e ts --exec ts-node src/webdav/index.ts",
"pack:win": "oclif pack win",
"publish:npm": "npm run build && npm publish --scope=@internxt --registry=https://registry.npmjs.org/ --access public",
"publish:github": "npm run build && npm publish --scope=@internxt --registry=https://npm.pkg.github.com --tag latest",
"postinstall": "node ./scripts/restart-webdav.js"
},
"homepage": "https://github.com/internxt/cli",
"license": "MIT",
"main": "",
"name": "@internxt/cli",
"clientName": "internxt-cli",
"repository": "https://github.com/internxt/cli",
"bugs": "https://github.com/internxt/cli",
"types": "dist/index.d.ts",
"files": [
".env",
"/bin",
"/dist",
"/scripts",
"/oclif.manifest.json"
],
"dependencies": {
"@dashlane/pqc-kem-kyber512-node": "1.0.0",
"@inquirer/prompts": "8.3.0",
"@internxt/inxt-js": "2.3.1",
"@internxt/lib": "1.4.1",
"@internxt/sdk": "1.15.1",
"@oclif/core": "4.8.3",
"@oclif/plugin-autocomplete": "3.2.40",
"axios": "1.13.6",
"better-sqlite3": "12.6.2",
"bip39": "3.1.0",
"body-parser": "2.2.2",
"cli-progress": "3.12.0",
"dayjs": "1.11.19",
"dotenv": "17.3.1",
"express": "5.2.1",
"express-async-handler": "1.2.0",
"fast-xml-parser": "5.4.2",
"hash-wasm": "4.12.0",
"mime-types": "3.0.2",
"open": "11.0.0",
"openpgp": "6.3.0",
"otpauth": "9.5.0",
"pm2": "6.0.14",
"range-parser": "1.2.1",
"selfsigned": "5.5.0",
"tty-table": "5.0.0",
"typeorm": "0.3.28",
"winston": "3.19.0"
},
"devDependencies": {
"@internxt/eslint-config-internxt": "2.0.1",
"@internxt/prettier-config": "internxt/prettier-config#v1.0.2",
"@openpgp/web-stream-tools": "0.3.0",
"@types/cli-progress": "3.11.6",
"@types/express": "5.0.6",
"@types/mime-types": "3.0.1",
"@types/node": "25.3.3",
"@types/range-parser": "1.2.7",
"@vitest/coverage-istanbul": "4.0.18",
"@vitest/spy": "4.0.18",
"eslint": "9.39.3",
"husky": "9.1.7",
"lint-staged": "16.3.2",
"nodemon": "3.1.14",
"oclif": "4.22.85",
"prettier": "3.8.1",
"rimraf": "6.1.3",
"sql.js": "1.14.1",
"ts-node": "10.9.2",
"typescript": "5.9.3",
"vitest": "4.0.18",
"vitest-mock-express": "2.2.0"
},
"optionalDependencies": {
"sharp": "0.34.5"
},
"engines": {
"node": ">=22.13.0"
},
"bin": {
"internxt": "./bin/run.js"
},
"oclif": {
"bin": "internxt",
"dirname": "internxt-cli",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-autocomplete"
],
"topicSeparator": " ",
"topics": {},
"hooks": {
"prerun": "./dist/hooks/prerun/auth_check"
},
"macos": {
"identifier": "com.internxt.cli"
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}