-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.37 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
{
"name": "@octodevs/octodrive-cli",
"version": "0.1.0",
"description": "OctoDrive - Security-first fully encrypted file storage service",
"main": "dist/App.js",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"test": "jest --passWithNoTests"
},
"repository": {
"type": "git",
"url": "https://github.com/octodevs/octodrive-cli.git"
},
"files": [
"dist/**/*"
],
"author": "Minhyeok Park<[email protected]>",
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.4.1",
"@types/crypto-js": "^4.1.1",
"@types/node": "^18.11.18",
"@types/prompts": "^2.4.2",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^33.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.4.1",
"prettier": "^2.8.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.4"
},
"bin": {
"octodrive-cli": "./dist/App.js"
},
"dependencies": {
"@fastify/multipart": "^7.4.0",
"@fastify/static": "^6.8.0",
"@octodevs/octodrive-sdk": "^1.0.0",
"chalk": "^4.1.2",
"fastify": "^4.12.0",
"prompts": "^2.4.2",
"undici": "^5.16.0",
"yargs": "^17.6.2"
}
}