-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.22 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
{
"name": "plist-workspace",
"scripts": {
"prepare": "npm run build",
"test": "vitest",
"build": "yarn workspaces foreach -Apti run build",
"lint": "yarn workspaces foreach -Api run lint",
"publish": "yarn workspaces foreach -Apti npm publish --tolerate-republish"
},
"workspaces": [
"packages/*"
],
"repository": {
"type": "git",
"url": "https://github.com/mat-sz/plist.git"
},
"bugs": {
"url": "https://github.com/mat-sz/plist/issues"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
],
"__tests__/**/*.{js,jsx,ts,tsx,json,css,scss,md}": [
"prettier --write"
]
},
"homepage": "https://github.com/mat-sz/plist",
"author": "Mat Sz <[email protected]>",
"license": "BSD-3-Clause-Clear",
"private": true,
"devDependencies": {
"@types/node": "^20.10.8",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"husky": "^8.0.1",
"lint-staged": "^13.0.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"vitest": "^1.1.3"
},
"packageManager": "[email protected]"
}