-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (38 loc) · 1.48 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
{
"name": "wl-foundry-cli",
"author": "Workleap",
"private": true,
"version": "0.0.1",
"description": "CLI to scaffold web projects for the Workleap platform.",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gsoft-inc/wl-foundry-cli.git"
},
"scripts": {
"postinstall": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf node_modules/.cache",
"dev": "pnpm --filter \"./packages/**\" -r dev",
"build": "pnpm --filter \"./packages/**\" -r build",
"test": "jest",
"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",
"changeset": "changeset",
"release": "pnpm build && pnpm -r --filter \"./packages/**\" publish",
"clean": "pnpm -r --parallel exec pnpm dlx rimraf dist",
"reset": "pnpm -r --parallel --include-workspace-root exec pnpm dlx rimraf dist node_modules"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@changesets/changelog-github": "0.4.8",
"@workleap/eslint-plugin": "1.8.2",
"@workleap/typescript-configs": "2.3.2",
"eslint": "8.44.0",
"jest": "29.6.1",
"ts-node": "10.9.1",
"typescript": "5.0.4"
},
"engines": {
"node": ">=18.0.0"
}
}