-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.6 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.6 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
{
"name": "fusion-skills",
"private": true,
"version": "0.19.0",
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@graphql-codegen/cli": "^6.2.1",
"@graphql-codegen/typescript": "^5.0.8",
"@graphql-codegen/typescript-operations": "^5.0.8",
"@types/bun": "^1.3.10",
"@types/node": "^25.5.0",
"biome": "^0.3.3",
"graphql": "^16.11.0",
"typescript": "^5.8.2"
},
"scripts": {
"postinstall": "bun run scripts/postinstall/index.ts",
"biome:check": "biome check .",
"biome:fix": "biome check --write .",
"biome:format": "biome format --write .",
"test": "bun test",
"test:watch": "bun test --watch",
"list:skills": "bun run scripts/list-skills/index.ts",
"list:changesets": "bun run scripts/list-changesets/index.ts",
"validate": "bun run validate:graphql && bun run validate:scripts && bun run validate:skills && bun run validate:skill-sizes && bun run validate:ownership && bun run validate:pr",
"validate:graphql": "bun run scripts/validate-graphql/index.ts",
"validate:graphql:codegen": "graphql-codegen --config codegen.github.yml --errors-only",
"validate:scripts": "bun run scripts/validate-scripts/index.ts",
"validate:skills": "bun run scripts/validate-skills/index.ts",
"validate:skill-sizes": "bun run scripts/validate-skills/check-skill-sizes-cli.ts",
"validate:ownership": "bun run scripts/validate-skills-ownership/index.ts",
"validate:pr": "bun run scripts/validate-pr/index.ts",
"release:prepare": "bun run scripts/release-prepare/index.ts",
"release:finalize": "bun run scripts/release-finalize/index.ts"
}
}