-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
40 lines (40 loc) · 1.09 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
{
"name": "nx-remotecache-gcs",
"version": "2.2.0",
"description": "Remote caching for nx using Google Cloud Storage",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "prettier -w . && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wvanderdeijl/nx-remotecache-gcs.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/wvanderdeijl/nx-remotecache-gcs/issues"
},
"homepage": "https://github.com/wvanderdeijl/nx-remotecache-gcs#readme",
"devDependencies": {
"@nx/workspace": "^16.9.1",
"@types/node": "^20.7.0",
"@types/yargs": "^17.0.25",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@google-cloud/storage": "^7.1.0",
"@types/tar-fs": "^2.0.2",
"mkdirp": "^3.0.1",
"tar-fs": "^3.0.4"
},
"peerDependencies": {
"@nx/workspace": ">=16.0.0"
},
"files": [
"index.js",
"lifecycle.json"
]
}