forked from falcondev-oss/github-actions-cache-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.63 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.63 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "github-actions-cache-server",
"type": "module",
"version": "8.1.4",
"private": true,
"packageManager": "[email protected]+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a",
"engines": {
"node": "22",
"pnpm": "10"
},
"scripts": {
"prepare": "nitropack prepare && [ -z \"$CI\" ] && husky || echo 'Skipping husky in CI'",
"dev": "nitropack dev",
"build": "nitropack build",
"preview": "node .output/server/index.mjs",
"lint": "eslint --cache . && prettier --check --cache .",
"lint:ci": "eslint --cache --cache-strategy content . && prettier --check --cache --cache-strategy content .",
"lint:fix": "eslint --fix --cache . && prettier --write --cache .",
"type-check": "tsc -p tsconfig.json --noEmit",
"action": "act -v --env ACTIONS_RESULTS_URL=http://host.docker.internal:3000/ --container-architecture linux/amd64 -W tests",
"test:watch": "DEBUG=true VITEST_DB_DRIVER=sqlite VITEST_STORAGE_DRIVER=filesystem vitest --watch --ui",
"test:run": "vitest run"
},
"changelogithub": {
"extends": "gh:falcondev-it/configs/changelogithub"
},
"dependencies": {
"@antfu/utils": "^9.2.0",
"@aws-sdk/client-s3": "^3.1011.0",
"@aws-sdk/lib-storage": "^3.1011.0",
"@aws-sdk/s3-request-presigner": "^3.1011.0",
"@google-cloud/storage": "^7.19.0",
"@types/better-sqlite3": "^7.6.13",
"@types/pg": "^8.15.5",
"better-sqlite3": "^12.2.0",
"consola": "^3.4.2",
"croner": "^9.1.0",
"execa": "^9.6.0",
"h3": "^1.15.5",
"hot-shots": "^11.2.0",
"kysely": "^0.28.12",
"mysql2": "^3.14.4",
"nitropack": "^2.12.5",
"pg": "^8.16.3",
"remeda": "^2.30.0",
"typescript": "^5.9.2",
"zod": "^4.1.5"
},
"devDependencies": {
"@actions/cache": "^4.0.5",
"@commitlint/cli": "^19.8.1",
"@louishaftmann/commitlint-config": "^4.3.3",
"@louishaftmann/eslint-config": "^4.3.3",
"@louishaftmann/lintstaged-config": "^4.3.3",
"@louishaftmann/prettier-config": "^4.3.3",
"@testcontainers/mysql": "^11.5.1",
"@testcontainers/postgresql": "^11.5.1",
"@types/node": "^22.13.0",
"@types/wait-on": "^5.3.4",
"@vitest/ui": "^3.2.4",
"concurrently": "^9.2.1",
"dotenv": "^17.2.2",
"eslint": "^9.34.0",
"execa": "^9.3.1",
"husky": "^9.1.7",
"ky": "^1.9.1",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"start-server-and-test": "^2.0.13",
"testcontainers": "^11.5.1",
"ts-pattern": "^5.8.0",
"vitest": "^3.2.4",
"wait-on": "^8.0.4"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"better-sqlite3",
"cpu-features",
"esbuild",
"protobufjs",
"ssh2",
"unrs-resolver"
],
"ignoredBuiltDependencies": [
"unix-dgram"
],
"overrides": {
"@tootallnate/once": "^3.0.1",
"ajv@<6.14.0": "^6.14.0",
"ajv@>=7.0.0-alpha.0 <8.18.0": "^8.18.0",
"axios": "^1.13.5",
"fast-xml-parser": "^5.5.6",
"flatted": "^3.4.0",
"glob": "^10.5.0",
"js-yaml": "^4.1.1",
"jws": "^4.0.1",
"lodash": "^4.17.23",
"lodash-es": "^4.17.23",
"minimatch@<3.1.3": "^3.1.3",
"minimatch@>=5.0.0 <5.1.7": "^5.1.7",
"minimatch@>=9.0.0 <9.0.6": "^9.0.6",
"node-forge": "^1.3.2",
"qs": "^6.14.2",
"rollup@>=4.0.0 <4.59.0": "^4.59.0",
"serialize-javascript": "^7.0.3",
"tar": "^7.5.8",
"tar-fs@^2.1.3": "^2.1.4",
"tar-fs@^3.1.0": "^3.1.1",
"undici@<6.23.0": "^6.23.0",
"undici@>=7.0.0 <7.24.0": "^7.24.0",
"vite": "^7.0.7"
}
}
}