forked from yowainwright/pastoralist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) Β· 2.44 KB
/
package.json
File metadata and controls
89 lines (89 loc) Β· 2.44 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "pastoralist",
"version": "1.9.6",
"description": "A tool to watch over node module resolutions and overrides π π©π½βπΎ",
"main": "dist/index.cjs",
"module": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"bin": {
"pastoralist": "./dist/index.js"
},
"scripts": {
"build": "turbo run build-dist",
"build-dist": "bun run clean-dist && bun build src/index.ts --outdir dist --target node --minify && tsc --emitDeclarationOnly --outDir dist",
"clean-dist": "bun run scripts/clean.ts",
"commit": "git-cz",
"dev": "bun run --cwd app dev",
"dryrun": "bun run src/index.ts --dryRun",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "oxlint src app",
"lint-fix": "oxlint src app --fix",
"prepare": "sh scripts/prepare.sh",
"prepublishOnly": "bun run test && bun run build-dist",
"preview": "bun run --cwd app preview",
"release": "release-it",
"test": "bun test",
"test:bench": "./tests/benchmarks/run-benchmarks.sh",
"test:e2e": "./tests/e2e/scripts/run-e2e-tests.sh",
"test:integration:docker": "cd tests/e2e && docker compose up --abort-on-container-exit",
"typecheck": "turbo run typecheck-src",
"typecheck-src": "tsc --noEmit",
"update": "codependence --update && bun run update-app-deps",
"update-app-deps": "cd app && bun update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yowainwright/pastoralist.git"
},
"keywords": [
"resolutions",
"overrides",
"dependencies",
"security",
"dependency-management",
"yarn",
"pnpm"
],
"author": "Jeff Wainwright <yowainwright@gmail.com> (https://jeffry.in)",
"license": "O'Sassy",
"bugs": {
"url": "https://github.com/yowainwright/pastoralist/issues"
},
"homepage": "https://jeffry.in/pastoralist/",
"workspaces": [
"app"
],
"dependencies": {},
"devDependencies": {
"@types/bun": "latest",
"codependence": "^0.3.1",
"oxlint": "^1.25.0",
"prettier": "3.7.4",
"release-it": "19.2.3",
"turbo": "2.7.3",
"typescript": "5.9.3"
},
"release-it": {
"git": {
"commitMessage": "chore: release",
"commitArgs": [
"--no-verify"
]
}
},
"packageManager": "bun@1.3.1",
"engines": {
"node": ">=20"
}
}