-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@vercel/remote",
"version": "1.0.1",
"description": "An SDK for remote artifact caching on Vercel",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc -p tsconfig.json --noEmit",
"build": "tsup",
"dev": "tsup --watch",
"clean:build": "rm -rf dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vercel/remote-cache.git"
},
"keywords": [],
"author": "Jared Palmer",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/vercel/remote-cache/issues"
},
"homepage": "https://github.com/vercel/remote-cache#readme",
"devDependencies": {
"@types/concat-stream": "^2.0.0",
"@types/node": "12.20.24",
"@types/node-fetch": "^2.6.2",
"@types/raw-body": "^2.3.0",
"async-listen": "^2.0.2",
"esbuild": "^0.14.21",
"msw": "^0.36.8",
"tsconfig": "workspace:^",
"vitest": "^0.3.2"
},
"dependencies": {
"ci-info": "^3.4.0",
"concat-stream": "^2.0.0",
"node-fetch": "^2.6.7",
"raw-body": "^2.5.1"
}
}