-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.4 KB
/
package.json
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
{
"name": "packages",
"version": "0.2.0",
"description": "My mono-repo for a bunch of small NPM/bun packages",
"main": "index.js",
"repository": "https://github.com/kevinfrei/packages.git",
"author": "Kevin Frei <kevinfrei@hotmail.com>",
"license": "Unlicense",
"workspaces": [
"modules/agnostic/*",
"modules/node/*",
"modules/www/*"
],
"scripts": {
"release": "bun runall release",
"build": "bun runall build",
"test": "bun runall test",
"justtest": "bun runall justtest",
"typechk": "bun runall typechk",
"lint": "bun runflat lint",
"runall": "bun forall bun run",
"runflat": "bun forflat bun run",
"forall": "tools workspace",
"forflat": "tools workspace --no-deps",
"serial": "tools workspace -s",
"format": "tools format bun",
"pre-commit": "bun run format",
"pre-push": "bun run build && bun run test",
"pub2npm": "bun forflat npm publish --access=private",
"prepare": "husky",
"prep4npm": "tools workspace -f",
"done4npm": "tools workspace -c",
"bumpver": "tools workspace -v",
"verpatch": "bun run bumpver patch",
"verminor": "bun run bumpver minor"
},
"devDependencies": {
"@freik/workspace": "^0.6.3",
"esbuild": "^0.23.1",
"husky": "^9.1.5",
"madge": "^8.0.0",
"prettier": "^3.3.3",
"typedoc": "^0.26.6",
"typedoc-plugin-markdown": "^4.2.6",
"typescript": "^5.5.4"
}
}