-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "@tomjs/utils-packages",
"private": true,
"version": "1.0.0",
"description": "A collection of functions for `node.js` and `web` projects.",
"engines": {
"node": ">=16"
},
"packageManager": "[email protected]",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "pnpm -r --stream --filter=@tomjs/* build",
"test": "vitest",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint \"packages/**/*.ts\" *.{js,cjs,ts} --fix --cache",
"lint:prettier": "prettier --write .",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@tomjs/commitlint": "^3.2.0",
"@tomjs/eslint": "^3.0.1",
"@tomjs/prettier": "^1.4.1",
"@tomjs/tsconfig": "^1.6.0",
"@types/node": "^18.19.33",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"rimraf": "^5.0.7",
"tsup": "^8.1.0",
"tsx": "^4.10.5",
"typescript": "~5.4.5",
"vitest": "^1.6.0"
}
}