generated from codex-team/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.02 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.02 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": "@hawk.so/kit",
"private": true,
"description": "Set of utils for Hawk services development",
"repository": "https://github.com/codex-team/hawk.kit",
"author": "CodeX <team@codex.so>",
"license": "AGPL-3.0",
"engines": {
"node": ">=22.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach -At run build",
"clean": "rimraf -g \"packages/**/dist\" \"packages/**/*.tsbuildinfo\"",
"lint": "yarn workspaces foreach -At run build && yarn workspaces foreach -A run lint",
"lint:fix": "yarn workspaces foreach -At run build && yarn workspaces foreach -A run lint --fix",
"test": "vitest --watch=false",
"coverage": "vitest --watch=false --coverage",
"preinstall": "npx only-allow yarn"
},
"devDependencies": {
"eslint": "^9.14.0",
"eslint-config-codex": "^2.0.3",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0",
"vitest": "^2.1.4"
},
"packageManager": "yarn@4.5.1"
}