-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
50 lines (50 loc) · 1.46 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
45
46
47
48
49
50
{
"name": "@chatbotkit/monorepo",
"version": "0.0.0",
"private": true,
"engines": {
"node": ">=18.17.0",
"pnpm": ">=8.12.0"
},
"type": "module",
"scripts": {
"build": "run-s build:*",
"build:all": "turbo run build",
"check": "run-s check:*",
"check:all": "turbo run check",
"clean": "run-p clean:*",
"clean:all": "turbo run clean",
"format": "run-p format:*",
"format:pkg": "format-package -w",
"format:src": "prettier -w .",
"lint": "run-s lint:*",
"lint:all": "turbo run lint",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"prepare-changes": "changeset",
"publish-changes": "turbo run lint check build test && changeset version && changeset publish",
"test": "turbo run test"
},
"packageManager": "pnpm@8.12.0",
"dependencies": {
"@changesets/cli": "^2.26.2",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^20.9.1",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"dotenv": "^16.4.5",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"format-package": "^7.0.0",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.7",
"rimraf": "^5.0.5",
"turbo": "^1.10.16",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typedoc-plugin-mdn-links": "^3.1.18",
"typescript": "^5.0.4"
}
}