-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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": "@viamrobotics/eslint-config",
"publishConfig": {
"access": "public",
"provenance": true
},
"version": "1.1.0",
"description": "ESLint configuration for projects at Viam.",
"type": "module",
"main": "./eslint-config.js",
"types": "./dist/eslint-config.d.ts",
"exports": {
".": {
"types": "./dist/eslint-config.d.ts",
"default": "./eslint-config.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/viamrobotics/js-config.git",
"directory": "packages/eslint-config"
},
"keywords": [
"eslint",
"eslintconfig"
],
"license": "Apache-2.0",
"dependencies": {
"@eslint/js": "~9.24.0",
"@typescript-eslint/utils": "~8.29.0",
"@vitest/eslint-plugin": "~1.1.39",
"eslint-config-prettier": "~10.1.1",
"eslint-plugin-simple-import-sort": "~12.1.1",
"eslint-plugin-unicorn": "~58.0.0",
"globals": "^16.0.0",
"typescript-eslint": "~8.29.0"
},
"peerDependencies": {
"eslint": ">=9 <10",
"typescript": ">=5 <6",
"vitest": "*"
},
"peerDependenciesMeta": {
"vitest": {
"optional": true
}
}
}