-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
35 lines (35 loc) · 1.02 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
{
"name": "@irsdk-node/workspace",
"private": true,
"version": "3.0.0",
"author": {
"name": "Matt Bengston",
"email": "[email protected]"
},
"engines": {
"node": ">=18"
},
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "yarn workspaces foreach -Apvi run watch",
"lint": "yarn workspaces foreach -Apvi run lint",
"clean": "yarn workspaces foreach -Apvi run clean",
"check-types": "yarn workspaces foreach -Apvi run check-types",
"build": "yarn workspaces foreach -Apvti run build",
"publish": "yarn version apply --all && yarn workspaces foreach -Apt npm publish --tolerate-republish"
},
"packageManager": "[email protected]",
"preferUnplugged": false,
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"eslint": "^8.4.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.2"
}
}