-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "root",
"private": true,
"engines": {
"node": "=22.x"
},
"license": "MIT",
"packageManager": "pnpm@9.12.3",
"workspaces": [
"packages/*"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "husky",
"eslint": "eslint --fix . --max-warnings 0",
"prettier-check": "npx prettier --check --cache .",
"prettier": "npx prettier --write --cache ."
},
"repository": "github:tap3-cloud/tag-sdk",
"peerDependencies": {
"eslint": ">= 8",
"prettier": ">= 3"
},
"devDependencies": {
"@changesets/cli": "^2.27.11",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@stylistic/eslint-plugin": "^2.12.1",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/eslint-plugin": "^1.1.22",
"concurrently": "^9.1.1",
"cross-env": "^7.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.3.0",
"only-allow": "^1.2.1",
"prettier": "^3.4.2",
"ts-node": "10.9.2",
"turbo": "^2.3.3",
"typedoc": "^0.27.6",
"typescript": "^5.7.2",
"vite": "^6.0.6",
"vitest": "^2.1.8"
}
}