-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 1.98 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ombro-monorepo",
"private": true,
"author": "Cphayim <i@cphayim.me>",
"repository": "git@github.com:Cphayim/ombro.git",
"license": "MIT",
"engines": {
"node": ">=v16.20.2"
},
"packageManager": "pnpm@9.0.4",
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"clean:deps": "pnpm -wr exec -- rimraf node_modules",
"clean:build": "pnpm -r exec -- rimraf dist coverage *.tsbuildinfo",
"build": "pnpm clean:build && pnpm -r build",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"new": "tsx scripts/new.ts",
"lint": "eslint packages/ --ext .ts --fix --ignore-path .gitignore",
"format": "prettier --write --parser typescript \"packages/**/*.ts\"",
"commit": "git add . && cz"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"lint-staged": {
"*.{js,json}": [
"prettier --write"
],
"*.ts": [
"eslint",
"prettier --write --parser typescript"
]
},
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@ombro/eslint-config-typescript": "workspace:*",
"@ombro/tsconfig": "workspace:*",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.7",
"@types/node": "^18.19.24",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vitest/coverage-v8": "^0.34.6",
"commitizen": "^4.3.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"execa": "^6.1.0",
"husky": "^9.0.11",
"inquirer": "^9.2.16",
"lint-staged": "^14.0.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"tsx": "^4.7.1",
"typescript": "^5.1.3",
"vite": "^4.5.2",
"vite-plugin-dts": "^3.7.3",
"vitest": "^0.34.6",
"vue-tsc": "^1.8.27"
}
}