-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
45 lines (45 loc) · 1.27 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
{
"name": "nx-remotecache-custom",
"version": "20.0.0",
"description": "Build custom caching for @nrwl/nx in a few lines of code",
"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 build && cd dist && pnpm publish && cd ..",
"local-release": "pnpm build && cd dist && pnpm publish --registry=http://localhost:4873/ --no-git-checks && cd ..",
"link": "pnpm build && cd dist && pnpm link && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/NiklasPor/nx-remotecache-custom.git"
},
"keywords": [
"nx",
"remote",
"cache",
"remotecache",
"angular",
"typescript"
],
"author": "Niklas Portmann",
"license": "MIT",
"bugs": {
"url": "https://github.com/NiklasPor/nx-remotecache-custom/issues"
},
"homepage": "https://github.com/NiklasPor/nx-remotecache-custom#readme",
"devDependencies": {
"@types/tar": "^6.1.3",
"@types/yargs": "^17.0.13",
"nx": "^20.0.0",
"typescript": "^5.1.0"
},
"dependencies": {
"chalk": "^4.1.2",
"dotenv": "^16.0.3",
"tar": "^6.2.1"
},
"peerDependencies": {
"nx": "^20.0.0"
}
}