This repository has been archived by the owner on Dec 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 2.63 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
{
"name": "@atek-cloud/atek",
"version": "0.0.20",
"description": "",
"main": "dist/index.js",
"bin": "dist/bin.js",
"type": "module",
"scripts": {
"start": "node dist/bin.js",
"build": "tsc --project tsconfig.json",
"test": "ava -s test/*.ts"
},
"ava": {
"extensions": {
"ts": "module"
},
"nonSemVerExperiments": {
"configurableModuleFormat": true
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"repository": "github:atek-cloud/atek",
"bugs": {
"url": "https://github.com/atek-cloud/atek/issues"
},
"homepage": "https://github.com/atek-cloud/atek#readme",
"author": "Paul Frazee <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/http-proxy": "^1.17.7",
"@types/inquirer": "^8.1.1",
"@types/minimist": "^1.2.2",
"@types/node": "^16.6.0",
"@types/node-fetch": "^2.5.12",
"@types/semver": "^7.3.8",
"@types/tmp": "^0.2.1",
"@types/uuid": "^8.3.1",
"ava": "^3.15.0",
"ts-node": "^10.2.1",
"typescript": "^4.3.5"
},
"dependencies": {
"@atek-cloud/adb-api": "^2.0.0",
"@atek-cloud/adb-tables": "^2.0.0",
"@atek-cloud/inspect-api": "^1.0.0",
"@atek-cloud/node-fetch-cookies": "^2.0.4",
"@atek-cloud/node-rpc": "^4.2.0",
"@atek-cloud/services-api": "^1.2.1",
"@atek-cloud/user-sessions-api": "^1.0.0",
"@atek-cloud/users-api": "^1.1.0",
"@hyperspace/rpc": "^1.15.1",
"@hyperswarm/dht": "^4.0.1",
"@mishguru/selfupdate": "^4.8.0",
"@tinyhttp/cookie": "^2.0.1",
"@types/ws": "^7.4.7",
"ajv": "^8.6.2",
"ajv-formats": "^2.1.0",
"ansi-escapes": "^5.0.0",
"await-lock": "^2.1.0",
"boxen": "^5.1.1",
"bytes": "^3.1.0",
"cfonts": "^2.9.3",
"chalk": "^4.1.2",
"cli-spinners": "^2.6.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"ejs": "^3.1.6",
"express": "^4.17.1",
"figures": "^3.2.0",
"http-proxy": "^1.18.1",
"hyperspace": "^3.19.0",
"inquirer": "^8.1.3",
"is-installed-globally": "^0.4.0",
"is-interactive": "^1.0.0",
"isomorphic-git": "^1.9.2",
"json-ptr": "^2.2.0",
"jsonrpc-lite": "^2.2.0",
"minimist": "^1.2.5",
"monotonic-lexicographic-timestamp": "^1.0.0",
"node-fetch": "^2.6.1",
"pauls-sliding-window-rate-limiter": "^1.0.0",
"quick-lru": "^6.0.1",
"random-access-memory": "^3.1.2",
"semver": "^7.3.5",
"subcommand": "^2.1.1",
"term-size": "^3.0.0",
"terminal-link": "^3.0.0",
"tmp": "^0.2.1",
"uuid": "^8.3.2",
"ws": "^8.1.0"
}
}