-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.83 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.83 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
{
"name": "dotgithub",
"module": "index.ts",
"type": "module",
"private": true,
"scripts": {
"build": "bun run --filter @dotgithub/core build && bun run --filter @dotgithub/cli build",
"typecheck:core": "bunx tsc -p packages/core/tsconfig.json --noEmit",
"typecheck:cli": "bunx tsc -p packages/cli/tsconfig.json --noEmit",
"typecheck": "bun run typecheck:core && bun run typecheck:cli",
"lint:yaml": "bunx prettier --check .github/workflows/*.yml",
"lint": "bun run lint:yaml",
"format:check": "bunx prettier --check .",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"test:changed": "vitest related",
"test:packages": "bun run --filter './packages/*' test",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish --registry https://registry.npmjs.org",
"changeset:status": "changeset status --verbose"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.1",
"@types/bun": "latest",
"@types/node": "latest",
"@types/semver": "^7.5.8",
"@vitest/ui": "^3.2.4",
"jsii": "latest",
"json-schema-to-typescript": "^15.0.4",
"node-fetch": "^2.7.0",
"prettier": "^3.6.2",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": "^5"
},
"packageManager": "bun@1.2.22",
"dependencies": {
"@changesets/cli": "^2.29.5",
"axios": "^1.7.0",
"commander": "^14.0.0",
"minimatch": "^10.0.1",
"octokit": "^5.0.3",
"pino": "^10.0.0",
"pino-pretty": "^13.1.2",
"semver": "^7.7.2",
"simple-git": "^3.28.0",
"ts-morph": "^27.0.0",
"yaml": "^2.6.2"
},
"workspaces": [
"packages/*",
"examples/*"
],
"volta": {
"node": "22.21.0"
}
}