-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.1 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
{
"name": "node-conditions-monorepo",
"private": true,
"description": "node conditions as boolean flags",
"scripts": {
"prepare": "husky install",
"format:check": "prettier --ignore-path .gitignore --check . \"!.changeset/**\"",
"format": "pnpm format:check --write",
"lint:check": "eslint --ignore-path .gitignore .",
"lint": "pnpm lint:check --fix",
"generate": "node scripts/generate.js",
"test": "uvu tests",
"release": "pnpm changeset publish"
},
"keywords": [],
"author": "dominikg",
"license": "MIT",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"pnpm": "^7.27.1",
"node": "^14 || ^16 || >=18"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@svitejs/changesets-changelog-github-compact": "^1.1.0",
"eslint": "^8.34.0",
"eslint-plugin-n": "^15.6.1",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"node-conditions": "workspace:*",
"prettier": "^2.8.4",
"uvu": "^0.5.6"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,cjs,mjs}": "eslint --fix"
},
"pnpm": {
"overrides": {
"node-conditions": "workspace:*"
}
}
}