-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.65 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
{
"name": "@sebastian-software/standards",
"version": "0.7.0",
"description": "Repository standards for Sebastian Software — reference files, migration changelogs, agent instructions and a CLI to check and apply them.",
"license": "MIT",
"author": {
"name": "Sebastian Software GmbH",
"url": "https://sebastian-software.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sebastian-software/standards.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/sebastian-software"
},
"bin": {
"standards": "bin/standards.js"
},
"files": [
"bin",
"dist",
"reference",
"changes",
"manifest.json",
"CONSUMER-AGENTS.md",
"SKILL.md"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "pnpm build",
"test": "vitest run",
"typecheck": "tsc -p tsconfig.root.json",
"lint": "pnpm lint:oxlint && pnpm lint:eslint",
"lint:eslint": "eslint . --max-warnings=0",
"lint:oxlint": "oxlint -c oxlint.config.ts",
"format": "oxfmt --write .",
"format:check": "oxfmt --check .",
"check:self": "node dist/cli.js check",
"agent:check": "pnpm lint && pnpm format:check && pnpm typecheck && pnpm build && pnpm test && pnpm check:self"
},
"devDependencies": {
"@types/node": "^24.12.4",
"eslint": "^10.4.0",
"eslint-config-setup": "^0.4.0",
"jiti": "^2.7.0",
"oxfmt": "^0.57.0",
"oxlint": "^1.69.0",
"typescript": "^6.0.3",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@11.10.0"
}