-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.54 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.54 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
{
"name": "@savvy-web/github-action-template",
"version": "0.0.0",
"private": true,
"description": "Template repository for building a GitHub Marketplace action on the @effected Effect v4 kit with @savvy-web/github-action-builder.",
"homepage": "https://github.com/savvy-web/github-action-template#readme",
"bugs": {
"url": "https://github.com/savvy-web/github-action-template/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savvy-web/github-action-template.git"
},
"license": "MIT",
"author": "Savvy Web Systems <spencer@savvyweb.systems> (https://savvyweb.systems)",
"type": "module",
"scripts": {
"build": "turbo run build:prod --log-order=grouped",
"build:prod": "github-action-builder build",
"changeset": "changeset",
"ci:build": "CI=\"true\" turbo run build:prod --log-order=grouped --output-logs=full",
"ci:test": "CI=\"true\" vitest run --coverage",
"ci:version": "savvy changeset version && biome format --write .",
"lint": "biome check --max-diagnostics=none",
"lint:fix": "biome check --write --max-diagnostics=none",
"lint:fix:unsafe": "biome check --write --unsafe --max-diagnostics=none",
"lint:md": "markdownlint-cli2 --config './lib/configs/.markdownlint-cli2.jsonc'",
"lint:md:fix": "markdownlint-cli2 --config './lib/configs/.markdownlint-cli2.jsonc' --fix",
"prepare": "husky",
"schema:check": "vitest run --coverage.enabled=false __test__/unit/generate-schema.test.ts",
"schema:generate": "tsx lib/scripts/generate-schema.ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest --watch",
"typecheck": "turbo run types:check --log-prefix=none --log-order=grouped",
"types:check": "tsc --noEmit",
"validate": "github-action-builder validate"
},
"dependencies": {
"@effect/platform-node": "catalog:effect",
"@effected/github-actions": "catalog:effected",
"effect": "catalog:effect"
},
"devDependencies": {
"@effect/vitest": "catalog:effect",
"@effected/schemastore": "catalog:effected",
"@okfit/plugin": "^0.5.2",
"@savvy-web/github-action-builder": "^2.4.6",
"@savvy-web/silk": "^4.2.9",
"@vitest-agent/plugin": "^5.0.0",
"tsx": "catalog:silk"
},
"engines": {
"node": ">=24.11.0"
},
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "12.6.0+sha512.3ef68f951cb111ac204b4a5a16f0b2ddf0da56a96e0413e81d855d9f0b55ef926714709028e1cd00c405c2c5fb7b9e8ec4dc46777c805d0373c2f2ff00fd20ec",
"onFail": "download"
},
"runtime": [
{
"name": "node",
"version": "26.10.0",
"onFail": "ignore"
}
]
}
}