-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@kolint/source",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/kolint/source"
},
"license": "MIT",
"type": "module",
"scripts": {
"build": "tools/scripts/run-many build",
"checks": "tools/scripts/checks",
"docs": "vitepress dev docs",
"format": "prettier --write .",
"postinstall": "tools/scripts/prepare",
"lint": "eslint .",
"release": "tools/scripts/release",
"test": "tools/scripts/run-many test,e2e",
"type-check": "tsc -b tsconfig.json"
},
"dependencies": {
"@nx/devkit": "18.3.0",
"tslib": "^2.6.2"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.0.0",
"@kolint-dev/eslint": "workspace:*",
"@kolint-dev/nx": "workspace:*",
"@kolint-dev/tsconfig": "workspace:*",
"@microsoft/api-extractor": "^7.43.1",
"@nx/eslint": "18.3.0",
"@nx/eslint-plugin": "18.3.0",
"@nx/playwright": "18.3.0",
"@nx/plugin": "18.3.0",
"@nx/workspace": "18.3.0",
"@playwright/test": "^1.43.1",
"@swc-node/register": "^1.9.0",
"@swc/core": "^1.4.15",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/bun": "1.1.0",
"@types/node": "20.12.7",
"escape-string-regexp": "^5.0.0",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-playwright": "^1.6.0",
"globals": "^15.0.0",
"markdown-it-footnote": "^4.0.0",
"nx": "18.3.0",
"prettier": "^3.2.5",
"prettier-plugin-packagejson": "^2.5.0",
"ts-node": "10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.7.0",
"vitepress": "^1.1.3",
"vue": "^3.4.23"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"eslint": "9"
}
},
"patchedDependencies": {
"@nx/[email protected]": "patches/@[email protected]"
}
}
}