-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
63 lines (63 loc) · 2.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "cache",
"version": "4.2.0",
"private": true,
"description": "Cache dependencies and build outputs",
"main": "dist/restore/index.js",
"scripts": {
"postinstall": "npm run build",
"build": "MERGE=\"$(cat src/templates/merge.sql)\"; printf 'export const mergeSqlTemplate = `\n%s\n`' \"$MERGE\" > src/templates/merge.ts; tsc && ncc build -o dist/restore src/restore.ts && ncc build -o dist/save src/save.ts && ncc build -o dist/restore-only src/restoreOnly.ts && ncc build -o dist/save-only src/saveOnly.ts",
"test": "tsc --noEmit && jest --coverage",
"lint": "eslint **/*.ts --cache",
"format": "prettier --write **/*.ts **/*.md **/action.yml",
"format-ci": "prettier --write .github/workflows/*.yaml",
"format-check": "prettier --check **/*.ts",
"readme": "npx action-docs -t 3 -u; (cd save; npx action-docs -t 3 -u); (cd restore; npx action-docs -t 3 -u); prettier --write restore/README.md save/README.md README.md"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/cache.git"
},
"keywords": [
"actions",
"node",
"cache"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/cache": "file:deps/actions/toolkit/packages/cache",
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/io": "^1.1.3",
"@buildjet/cache": "file:deps/buildjet/toolkit/packages/cache",
"dedent": "^1.5.3",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.12",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.10",
"@typescript-eslint/eslint-plugin": "^8.26.0",
"@typescript-eslint/parser": "^8.26.0",
"@vercel/ncc": "^0.38.3",
"action-docs": "^2.5.1",
"eslint": "^9.22.0",
"eslint-config-prettier": "^10.1.1",
"eslint-config-love": "^119.0.0",
"eslint-import-resolver-typescript": "^3.8.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-n": "^17.16.2",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-promise": "^7.2.1",
"eslint-plugin-simple-import-sort": "^12.1.1",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"nock": "^14.0.1",
"prettier": "^3.5.3",
"ts-jest": "^29.2.6",
"typescript": "^5.7.3"
}
}