-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 1.01 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
{
"name": "ralph-monorepo",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"author": "Paul Nguyen <daonhan@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/daonhan/ralph.git"
},
"packageManager": "pnpm@9.12.0",
"scripts": {
"build": "pnpm -r run build",
"clean": "pnpm -r run clean",
"typecheck": "pnpm -r run typecheck",
"test": "node --test scripts/runner-floating-ref.test.mjs scripts/release-please-config.test.mjs scripts/update-status-table.test.mjs scripts/registries-not-behind-git.test.mjs scripts/smoke-image.test.mjs",
"smoke:image": "node scripts/smoke-image.mjs",
"publish-all": "pnpm -r publish --access public --no-git-checks",
"prepare": "husky || git config core.hooksPath .husky"
},
"devDependencies": {
"@types/node": "^26.1.1",
"husky": "^9.1.7",
"lint-staged": "^17.1.1",
"prettier": "^3.9.6",
"typescript": "^5.6.3"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
}
}