-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.14 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
{
"name": "skillguard",
"version": "0.1.0",
"private": true,
"description": "Local-first security scanner and policy gate for Agent Skills.",
"homepage": "https://github.com/stella/skillguard#readme",
"bugs": {
"url": "https://github.com/stella/skillguard/issues"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/stella/skillguard.git"
},
"workspaces": [
"packages/*"
],
"type": "module",
"scripts": {
"build": "turbo run build",
"changeset": "changeset",
"changeset:version": "changeset version && bun scripts/check-lockfile-workspace-versions.ts --write && bun install --frozen-lockfile",
"check:lockfile-versions": "bun scripts/check-lockfile-workspace-versions.ts",
"clean": "turbo run clean && git clean -xdf node_modules",
"format": "turbo run format",
"format:check": "turbo run format -- --check",
"hooks:install": "lefthook install",
"hooks:uninstall": "lefthook uninstall",
"knip": "knip",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"lint:ws": "sherif -r unsync-similar-dependencies && bun test scripts/toolchain-policy.test.ts scripts/bun-lock-workspace-versions.test.ts",
"pack:verify": "bash scripts/verify-pack.sh",
"secrets:check:staged": "bash scripts/check-staged-secrets.sh",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"sync-ai": "bash scripts/sync-ai-skills.sh",
"sync-ai:check": "bash scripts/sync-ai-skills.sh --check"
},
"devDependencies": {
"@changesets/changelog-github": "1.0.0",
"@changesets/cli": "3.0.0",
"@stll/oxlint-config": "0.6.0",
"@stll/typescript-config": "0.6.0",
"@types/node": "25.5.2",
"@typescript/native": "npm:typescript@7.0.2",
"bun-types": "1.4.1",
"eslint-plugin-sonarjs": "4.0.3",
"knip": "6.14.2",
"lefthook": "2.1.8",
"oxfmt": "0.51.0",
"oxlint": "1.75.0",
"oxlint-tsgolint": "7.0.2001",
"sherif": "1.11.1",
"tsdown": "0.22.9",
"turbo": "2.9.14",
"typescript": "6.0.3"
},
"engines": {
"bun": ">=1.4.1",
"node": ">=20"
},
"packageManager": "bun@1.4.1"
}