This repository was archived by the owner on May 30, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
135 lines (135 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
135 lines (135 loc) · 3.91 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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@savvy-web/github-action-effects",
"version": "2.0.2",
"private": true,
"description": "Effect-based utility library for building robust, well-logged, and schema-validated GitHub Actions.",
"keywords": [
"github-actions",
"effect",
"effect-ts",
"actions",
"octokit",
"schema-validation",
"typed-errors",
"service-layer",
"dependency-injection"
],
"homepage": "https://github.com/savvy-web/github-action-effects#readme",
"bugs": {
"url": "https://github.com/savvy-web/github-action-effects/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/savvy-web/github-action-effects.git"
},
"license": "MIT",
"author": {
"name": "C. Spencer Beggs",
"email": "spencer@savvyweb.systems",
"url": "https://savvyweb.systems"
},
"sideEffects": false,
"type": "module",
"exports": {
".": "./src/index.ts",
"./testing": "./src/testing.ts"
},
"scripts": {
"build": "turbo run build:dev build:prod --log-order=grouped",
"build:dev": "rslib build --config-loader native --env-mode dev",
"build:inspect": "rslib inspect --config-loader native --env-mode npm --verbose",
"build:prod": "rslib build --config-loader native --env-mode npm",
"ci:build": "CI=\"true\" turbo run build:dev build:prod --log-order=grouped --output-logs=full",
"ci:test": "CI=\"true\" vitest run --coverage",
"ci:version": "savvy-changesets version && biome format --write .",
"commit:check": "savvy-commit check",
"commit:init": "savvy-commit init",
"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 '**/*.{md,mdx}' --config './lib/configs/.markdownlint-cli2.jsonc'",
"lint:md:fix": "markdownlint-cli2 --config './lib/configs/.markdownlint-cli2.jsonc' --fix",
"prepare": "husky",
"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": "tsgo --noEmit"
},
"dependencies": {
"@azure/storage-blob": "^12.31.0",
"@cyclonedx/cyclonedx-library": "^10.0.0",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"@sigstore/bundle": "^4.0.0",
"@sigstore/sign": "^4.1.1",
"jsonc-effect": "^0.2.1",
"semver-effect": "^0.2.1",
"yaml-effect": "^0.6.0"
},
"devDependencies": {
"@effect/cluster": "catalog:silk",
"@effect/platform": "catalog:silk",
"@effect/platform-node": "catalog:silk",
"@effect/rpc": "catalog:silk",
"@effect/sql": "catalog:silk",
"@savvy-web/changesets": "^0.10.1",
"@savvy-web/commitlint": "^0.10.1",
"@savvy-web/lint-staged": "^1.2.1",
"@savvy-web/rslib-builder": "^0.20.11",
"@savvy-web/vitest": "^1.3.2",
"effect": "catalog:silk"
},
"peerDependencies": {
"@effect/platform": "catalog:silkPeers",
"@effect/platform-node": "catalog:silkPeers",
"effect": "catalog:silkPeers"
},
"peerDependenciesMeta": {
"@effect/platform": {
"optional": false
},
"@effect/platform-node": {
"optional": false
},
"effect": {
"optional": false
}
},
"packageManager": "pnpm@10.34.1+sha512.b58fbde6dca66a929538021581f648b4570b6ca19b18e7cbd7f2c07a7b24454155388dacdf08f2af3678e88a6d1fe04f9d609df24bf51735a060ea041b374ab7",
"devEngines": {
"packageManager": {
"name": "pnpm",
"version": "10.34.1",
"onFail": "ignore"
},
"runtime": [
{
"name": "node",
"version": "26.2.0",
"onFail": "ignore"
}
]
},
"publishConfig": {
"access": "public",
"directory": "dist/dev",
"linkDirectory": true,
"targets": [
{
"protocol": "npm",
"registry": "https://npm.pkg.github.com/",
"directory": "dist/npm",
"access": "public",
"provenance": true
},
{
"protocol": "npm",
"registry": "https://registry.npmjs.org/",
"directory": "dist/npm",
"access": "public",
"provenance": true
}
]
}
}