-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "nx-remotecache-azure",
"version": "20.0.0",
"description": "Remote caching for @nrwl/nx using Azure Blob Storage",
"main": "index.js",
"typings": "index.d.ts",
"scripts": {
"build": "rm -rf dist && tsc && cp package.json dist/package.json && cp README.md dist/README.md && cp CHANGELOG.md dist/CHANGELOG.md",
"release": "pnpm run build && cd dist && pnpm publish && cd ..",
"local-release": "pnpm run build && cd dist && pnpm publish --registry=http://localhost:4873/ --no-git-checks && cd ..",
"link": "pnpm run build && cd dist && pnpm link && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/NiklasPor/nx-remotecache-azure.git"
},
"keywords": [
"nx",
"remote",
"cache",
"remotecache",
"azure",
"blob",
"storage",
"angular",
"typescript"
],
"author": "Niklas Portmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/NiklasPor/nx-remotecache-azure/issues"
},
"homepage": "https://github.com/NiklasPor/nx-remotecache-azure#readme",
"devDependencies": {
"nx": "20.0.0",
"@types/yargs": "^17.0.24",
"typescript": "^5.1.0"
},
"dependencies": {
"@azure/identity": "^4.2.0",
"@azure/storage-blob": "^12.18.0",
"nx-remotecache-custom": "^20.0.0"
},
"peerDependencies": {
"nx": "^20.0.0"
}
}