-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
35 lines (35 loc) · 898 Bytes
/
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
{
"name": "@vercel/remote-rush",
"version": "1.0.1",
"description": "Remote caching for Rush using Vercel Remote Cache",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/remote-cache.git"
},
"files": [
"dist",
"lib",
"rush-plugin-manifest.json"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MPL-2.0",
"scripts": {
"lint": "eslint src/**/*.ts",
"typecheck": "tsc -p tsconfig.json --emitDeclarationOnly false --noEmit",
"build": "tsup",
"dev": "tsup --watch",
"clean:build": "rm -rf dist"
},
"devDependencies": {
"@microsoft/rush-lib": "latest",
"tsconfig": "workspace:^",
"typescript": "4.6.4"
},
"dependencies": {
"@rushstack/node-core-library": "latest",
"@rushstack/rush-sdk": "5.78.0",
"@vercel/remote": "workspace:^",
"https-proxy-agent": "~5.0.0"
}
}