-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.59 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
{
"name": "wl-openapi-typescript-cli",
"author": "Workleap",
"private": true,
"version": "0.0.1",
"description": "CLI to leverage OpenAPI document.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/workleap/wl-openapi-typescript.git"
},
"scripts": {
"postinstall": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules/.cache",
"dev": "pnpm --filter \"./packages/**\" -r dev",
"test": "pnpm --filter \"./packages/**\" -r test",
"build": "pnpm --filter \"./packages/**\" -r build",
"lint": "pnpm run \"/^lint:.*/\"",
"lint:eslint": "eslint --ext .js,.ts,.tsx . --max-warnings=-1 --cache --cache-location node_modules/.cache/eslint",
"lint:types": "pnpm -r --parallel --include-workspace-root exec tsc",
"eslint-fix": "eslint . --fix",
"reset": "pnpm clean && pnpm reset:modules",
"clean": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf dist node_modules/.cache",
"reset:modules": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules pnpm-lock.yaml",
"changeset": "changeset",
"changeset:publish": "pnpm run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "0.5.0",
"@changesets/cli": "2.27.7",
"@workleap/eslint-plugin": "3.2.2",
"@workleap/typescript-configs": "3.0.2",
"eslint": "8.57.0",
"typescript": "5.5.3"
},
"engines": {
"node": ">=18.0.0"
}
}