-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.33 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
{
"name": "@hackbg/toolbox",
"version": "5.0.1",
"type": "module",
"private": true,
"homepage": "https://github.com/hackbg/toolbox",
"bugs": "https://github.com/hackbg/toolbox/issues",
"repository": {
"type": "git",
"url": "https://github.com/hackbg/toolbox"
},
"license": "BSD-3-Clause-No-Military-License",
"description": "Baseline utilities.",
"devDependencies": {
"@hackbg/ensuite": "workspace:^",
"@ganesha/esbuild": "workspace:./ganesha/esbuild",
"@hackbg/ubik": "workspace:./ubik",
"@types/node": "latest",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"typedoc": "^0.25.4",
"typescript": "~5.7.2"
},
"scripts": {
"prepare": "husky install || true",
"check": "tsc --noEmit",
"ubik": "npm run check && ubik",
"ubik:all": "npm run check && pnpm -r ubik",
"ts:clean": "rm -rf dist packages/*/dist packages/*/types",
"ts:build": "npm run ts:clean && exit 1 && concurrently 'npm:ts:build:*'",
"ts:build:cjs": "ttsc -p tsconfig.cjs.json",
"ts:build:esm": "tsc -p tsconfig.esm.json",
"docs:typedoc": "NODE_OPTIONS=--max_old_space_size=8192 time ./node_modules/.bin/typedoc --tsconfig ./tsconfig.json --entryPointStrategy packages --entryPoints . --name Toolbox"
},
"lint-staged": {
"*.ts": "pnpm check"
}
}