-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 997 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 997 Bytes
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": "actions-cache",
"license": "MIT",
"scripts": {
"build": "node build.js",
"test": "tsc --noEmit && jest --coverage"
},
"dependencies": {
"@actions/cache": "^6.0.0",
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/glob": "^0.7.0",
"@actions/io": "^3.0.2",
"@opendal/lib-darwin-arm64": "^0.49.2",
"@opendal/lib-darwin-x64": "^0.49.2",
"@opendal/lib-linux-arm64-gnu": "^0.49.2",
"@opendal/lib-linux-x64-gnu": "^0.49.2",
"@opendal/lib-win32-x64-msvc": "^0.49.2",
"opendal": "^0.49.2"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^25.6.0",
"esbuild": "^0.28.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"typescript": "^6.0.3"
},
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"opendal"
],
"supportedArchitectures": {
"os": ["darwin", "linux", "win32"],
"cpu": ["x64", "arm64"]
}
},
"packageManager": "pnpm@10.5.2"
}