-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.62 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.62 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "botpress",
"private": true,
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "node ./scripts/setup-integrations.js",
"bump": "depsynky bump --ignore-dev && pnpm -w install",
"test": "vitest --run",
"check:bplint": "turbo check:bplint",
"check:dep": "depsynky check --ignore-dev",
"check:sherif": "sherif -i zod -i axios -i query-string -i googleapis",
"check:format": "prettier --check .",
"check:eslint": "eslint ./",
"check:oxlint": "oxlint -c .oxlintrc.json",
"check:lint": "pnpm check:bplint && pnpm check:oxlint && pnpm check:eslint",
"check:type": "turbo check:type",
"check:updates": "ncu",
"check:updates:json": "ncu --format json",
"fix:dep": "depsynky sync --ignore-dev",
"fix:sherif": "sherif -i zod -i axios -i query-string -i googleapis --fix",
"fix:format": "prettier --write .",
"fix:oxlint": "oxlint -c .oxlintrc.json --fix --fix-suggestions",
"fix:lint": "eslint --fix ./",
"check": "pnpm check:sherif && pnpm check:dep && pnpm check:format && pnpm check:lint && pnpm check:type",
"fix": "pnpm fix:sherif && pnpm fix:dep && pnpm fix:oxlint && pnpm fix:format && pnpm fix:lint",
"postinstall": "node ./scripts/setup-integrations.js",
"update:deps": "ncu -u && pnpm install"
},
"lint-staged": {
"**/*.{js,mjs,cjs,jsx,ts,mts,cts,tsx}": [
"oxlint -c .oxlintrc.json --fix --fix-suggestions",
"prettier --write"
],
"**/*.{json,yaml,yml,md}": "prettier --write",
"**/*.test.ts": "vitest --run"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.840.0",
"@botpress/api": "1.25.0",
"@botpress/cli": "4.10.2",
"@botpress/client": "1.16.1",
"@botpress/sdk": "4.13.0",
"@bpinternal/depsynky": "0.2.2",
"@bpinternal/readiness": "^0.0.16",
"@stylistic/eslint-plugin": "^5.1.0",
"@types/node": "^24.0.10",
"@typescript-eslint/eslint-plugin": "^8.35.1",
"@typescript-eslint/parser": "^8.35.1",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsdoc": "^51.3.3",
"eslint-plugin-oxlint": "^1.5.0",
"eslint-plugin-prettier": "^5.5.1",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.3.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"npm-check-updates": "^18.0.1",
"oxlint": "^1.5.0",
"prettier": "^3.6.2",
"retry-cli": "^0.7.0",
"semver": "^7.7.2",
"sherif": "1.6.1",
"ts-node": "^10.9.2",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "^3.2.4"
},
"packageManager": "pnpm@10.12.4"
}