-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"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": "pnpm@9.12.1",
"engines": {
"node": "^14 || ^16 || >=18"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@svitejs/changesets-changelog-github-compact": "^1.2.0",
"eslint": "^8.57.1",
"eslint-plugin-n": "^15.7.0",
"husky": "^8.0.3",
"lint-staged": "^13.3.0",
"node-conditions": "workspace:*",
"prettier": "^2.8.8",
"uvu": "^0.5.6"
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{js,cjs,mjs}": "eslint --fix"
},
"pnpm": {
"overrides": {
"node-conditions": "workspace:*"
}
}
}