-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
38 lines (38 loc) · 1.02 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
{
"name": "gatsby-cache",
"private": true,
"version": "1.4.6",
"description": "Cache build outputs for Gatsby's Conditional Page Build",
"author": "jongwooo <[email protected]>",
"scripts": {
"format": "biome format ./src",
"format:fix": "biome format --write ./src",
"lint": "tsc --noEmit && biome lint ./src",
"build": "ncc build -o dist/restore src/restore.ts && ncc build -o dist/save src/save.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jongwooo/gatsby-cache.git"
},
"keywords": [
"gatsbyjs",
"build-cache",
"github-actions",
"conditional-page-build"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/jongwooo/gatsby-cache/issues"
},
"homepage": "https://github.com/jongwooo/gatsby-cache#readme",
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^22.9.0",
"@vercel/ncc": "^0.38.2",
"typescript": "^5.6.3"
},
"dependencies": {
"@actions/cache": "^3.3.0",
"@actions/core": "^1.11.1"
}
}