-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
42 lines (42 loc) · 1017 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
33
34
35
36
37
38
39
40
41
42
{
"name": "root",
"private": true,
"scripts": {
"prepare": "husky install",
"format": "biome check packages --apply-unsafe && biome format --write packages",
"lint": "biome ci packages",
"build": "lerna run build",
"publish": "lerna run test && npm run build && lerna publish",
"publish-next": "npm run build && lerna publish --dist-tag next"
},
"devDependencies": {
"@oclif/test": "^2",
"@types/chai": "^4",
"@types/mocha": "^9.0.0",
"@types/node": "^22.10.2",
"chai": "^4",
"globby": "^11",
"husky": "^7.0.4",
"lerna": "^4.0.0",
"lint-staged": "^13.1.0",
"mocha": "^9",
"oclif": "^3",
"rimraf": "^3.0.2",
"@biomejs/biome": "1.6.4",
"ts-node": "^10.2.1",
"tslib": "^2.3.1",
"typescript": "5.7.2"
},
"version": "0.0.1",
"lint-staged": {
"packages/**/*.{js,jsx,ts,tsx}": [
"biome ci"
]
},
"files": [],
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/lint-staged"
}
}
}