-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 967 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
{
"name": "@buncho/repo",
"private": true,
"workspaces": [
"./packages/*",
"./examples/*"
],
"homepage": "https://github.com/neetly/buncho",
"repository": {
"type": "git",
"url": "[email protected]:neetly/buncho.git"
},
"license": "MIT",
"scripts": {
"build": "yarn workspaces foreach --all --topological-dev run build",
"clean": "yarn workspaces foreach --all --topological-dev run clean",
"lint": "eslint --max-warnings 0 . && prettier --check .",
"lint:fix": "eslint --max-warnings 0 --fix . && prettier --write .",
"publish": "yarn workspaces foreach --all --no-private npm publish --tolerate-republish"
},
"devDependencies": {
"@babel/cli": "7.24.1",
"@babel/core": "7.24.4",
"@neetly/babel-preset": "0.3.0",
"@neetly/eslint-config": "0.7.0",
"@neetly/tsconfig": "0.3.0",
"eslint": "8.57.0",
"prettier": "3.2.4",
"typescript": "5.4.4"
},
"packageManager": "[email protected]"
}