generated from codex-team/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 959 Bytes
/
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
{
"name": "@codexteam/typescript-lib-template",
"version": "2.0.0",
"description": "A quick start template for a new TypeScript library",
"repository": "https://github.com/codex-team/typescript-lib-template.git",
"author": "CodeX <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=22.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g \"packages/**/dist\" \"packages/**/*.tsbuildinfo\"",
"lint": "yarn workspaces foreach -A run lint",
"lint:fix": "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": "[email protected]"
}