-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.45 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.45 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
{
"name": "dev-toolkit",
"version": "0.0.0",
"private": true,
"description": "Platform Engineering toolkit: reusable GitHub Actions, AI Skills, and shared TypeScript configs.",
"license": "MIT",
"author": "kin0992",
"repository": {
"type": "git",
"url": "https://github.com/kin0992/dev-toolkit.git"
},
"type": "module",
"scripts": {
"build": "turbo run build",
"lint": "turbo run lint",
"lint:check": "turbo run lint:check",
"format": "oxfmt",
"format:check": "oxfmt --check",
"test": "turbo run test",
"typecheck": "turbo run typecheck",
"code-review": "pnpm format:check && pnpm typecheck && pnpm lint:check && pnpm test && pnpm marketplace:check",
"changeset": "changeset",
"version-packages": "changeset version && pnpm marketplace:sync",
"release": "turbo run build && changeset publish",
"marketplace:sync": "node scripts/sync-marketplace.mjs",
"marketplace:check": "node scripts/sync-marketplace.mjs --check"
},
"devDependencies": {
"@changesets/cli": "^2.31.1",
"@kin0992/oxc-config": "workspace:*",
"oxfmt": "catalog:core",
"oxlint": "catalog:core",
"turbo": "^2.10.7",
"typescript": "catalog:core",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=24.0.0",
"pnpm": ">=11.0.0"
},
"packageManager": "pnpm@11.19.0+sha512.7881f3ed590d472c4a955e2b88b2121791116066dcc88cbca3849ec9b60f1bbaa6d2ccb221fa91da4e1c65bef2bcbe379365aea7ac539c7bf86dedc3a1b22dce"
}