-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.16 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": "@chyzwar/common",
"version": "1.0.0",
"engines": {
"node": "22.x"
},
"main": "index.js",
"type": "module",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*",
"packages/*/examples",
"packages/*/examples/packages/*"
],
"scripts": {
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"build": "tsc --build",
"build:watch": "tsc --build --watch",
"lerna": "lerna",
"test": "vitest --run",
"test:coverage": "vitest --coverage",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@chyzwar/eslint-config": "^0.2.0",
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@lerna-lite/cli": "^3.10.0",
"@lerna-lite/publish": "^3.10.0",
"@lerna-lite/version": "^3.10.0",
"@types/node": "^22.9.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"ts-node": "^10.9.2",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"lint-staged": {
"*.{js,ts,tsx}": "yarn lint:fix"
},
"packageManager": "[email protected]"
}