-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.58 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.58 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
{
"name": "@geoql/eslint-plugin-vue-doctor",
"version": "1.2.0",
"private": false,
"description": "ESLint flat-config plugin for Vue 3 anti-patterns and AI-slop detection. Shares the same rule cores as @geoql/oxlint-plugin-vue-doctor. TypeScript, ESM.",
"keywords": [
"ai-slop",
"eslint",
"eslint-plugin",
"geoql",
"lint",
"vue",
"vue3"
],
"homepage": "https://github.com/geoql/doctor#readme",
"bugs": {
"url": "https://github.com/geoql/doctor/issues"
},
"license": "MIT",
"author": {
"name": "Vinayak Kulkarni",
"email": "inbox.vinayak@gmail.com",
"url": "https://vinayakkulkarni.dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geoql/doctor.git",
"directory": "packages/eslint-plugin-vue-doctor"
},
"files": [
"dist"
],
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "vp lint src",
"lint:fix": "vp lint src --fix",
"format": "vp fmt",
"format:check": "vp fmt --check",
"build": "vp pack",
"test": "vitest run"
},
"dependencies": {
"@geoql/doctor-rule-core": "workspace:*"
},
"devDependencies": {
"@geoql/doctor-core": "workspace:*",
"@types/node": "^26.1.1",
"@typescript-eslint/parser": "^8.64.0",
"eslint": "^10.7.0",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"peerDependencies": {
"eslint": ">=9.0.0"
},
"engines": {
"node": ">=24"
}
}