forked from internxt/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.57 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
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
123
124
{
"author": "Internxt <[email protected]>",
"version": "1.3.0",
"description": "Internxt CLI to manage your encrypted storage",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint",
"prepack": "yarn build && oclif manifest && oclif readme",
"prepare": "husky || true",
"test": "yarn test:unit",
"test:unit": "nyc --reporter=lcov --reporter=text mocha \"test/**/*.test.ts\" --exit",
"dev:webdav": "nodemon -e ts --exec ts-node src/webdav/index.ts",
"version": "oclif readme && git add README.md",
"pack:win": "oclif pack win",
"migrate": "sequelize db:migrate",
"migrate:undo": "sequelize db:migrate:undo",
"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",
"postinstall": "node ./scripts/skip-in-ci.js || internxt webdav restart"
},
"homepage": "https://github.com/internxt/cli",
"license": "MIT",
"main": "",
"name": "@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": {
"@internxt/inxt-js": "^2.0.11",
"@internxt/lib": "^1.2.1",
"@internxt/sdk": "^1.5.25",
"@oclif/core": "^3",
"axios": "^1.7.7",
"bip39": "^3.1.0",
"body-parser": "^1.20.3",
"chalk": "^5.3.0",
"dayjs": "^1.11.13",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"express-async-handler": "^1.2.0",
"express-basic-auth": "^1.2.1",
"fast-xml-parser": "^4.5.0",
"mime-types": "^2.1.35",
"node-fetch": "^2",
"openpgp": "^5.11.1",
"pm2": "^5.4.2",
"reflect-metadata": "^0.2.2",
"selfsigned": "^2.4.1",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"superagent": "^10.1.1",
"winston": "^3.16.0"
},
"devDependencies": {
"@internxt/eslint-config-internxt": "^1.0.9",
"@internxt/prettier-config": "^1.0.2",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^3",
"@openpgp/web-stream-tools": "0.0.11-patch-0",
"@types/chai": "^4",
"@types/express": "^4.17.21",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^10",
"@types/node": "^18",
"@types/node-fetch": "^2.6.11",
"@types/sinon-chai": "^3.2.12",
"@types/sinon-express-mock": "^1.3.12",
"@types/superagent": "^8.1.9",
"chai": "^4",
"eslint": "^8",
"eslint-config-oclif": "^5",
"eslint-config-oclif-typescript": "^3",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.6",
"lint-staged": "^15.2.10",
"makensis": "^2.0.8",
"mocha": "^10",
"nock": "^13.5.4",
"nodemon": "^3.1.7",
"nyc": "^17.1.0",
"oclif": "^4.5.1",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"sinon-chai": "^3.7.0",
"sinon-express-mock": "^2.2.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"internxt": "./bin/run.js"
},
"oclif": {
"bin": "internxt",
"dirname": "internxt-cli",
"commands": "./dist/commands",
"plugins": [],
"topicSeparator": " ",
"topics": {},
"hooks": {
"prerun": "./dist/hooks/prerun/auth_check"
},
"macos": {
"identifier": "com.internxt.cli"
}
},
"lint-staged": {
"*.{js,jsx,tsx,ts}": [
"prettier --write"
]
}
}