eslint-plugin-webmcp 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,89 @@
1
+ {
2
+ "name": "eslint-plugin-webmcp",
3
+ "version": "0.0.0",
4
+ "description": "Conservative ESLint rules for versioned browser WebMCP APIs",
5
+ "keywords": [
6
+ "eslint",
7
+ "eslint-plugin",
8
+ "eslintplugin",
9
+ "model-context",
10
+ "typescript",
11
+ "webmcp"
12
+ ],
13
+ "homepage": "https://github.com/ntnyq/eslint-plugin-webmcp#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/ntnyq/eslint-plugin-webmcp/issues"
16
+ },
17
+ "license": "MIT",
18
+ "author": {
19
+ "name": "ntnyq",
20
+ "email": "ntnyq13@gmail.com"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/ntnyq/eslint-plugin-webmcp.git"
25
+ },
26
+ "files": [
27
+ "dist"
28
+ ],
29
+ "type": "module",
30
+ "sideEffects": false,
31
+ "main": "./dist/index.mjs",
32
+ "types": "./dist/index.d.mts",
33
+ "exports": {
34
+ "./package.json": "./package.json",
35
+ ".": {
36
+ "types": "./dist/index.d.mts",
37
+ "import": "./dist/index.mjs"
38
+ }
39
+ },
40
+ "publishConfig": {
41
+ "access": "public"
42
+ },
43
+ "scripts": {
44
+ "build": "tsdown",
45
+ "dev": "tsdown --watch",
46
+ "format": "oxfmt",
47
+ "format:check": "oxfmt --check",
48
+ "lint": "oxlint",
49
+ "prepare": "husky",
50
+ "prepublishOnly": "pnpm run build",
51
+ "release": "run-s release:check release:version",
52
+ "release:check": "run-s format:check lint typecheck test build smoke",
53
+ "release:version": "bumpp",
54
+ "smoke": "node scripts/smoke.mjs",
55
+ "test": "vitest",
56
+ "typecheck": "tsc --noEmit"
57
+ },
58
+ "dependencies": {
59
+ "@typescript-eslint/utils": "^8.69.0",
60
+ "ajv": "^8.20.0"
61
+ },
62
+ "devDependencies": {
63
+ "@ntnyq/tsconfig": "^3.1.0",
64
+ "@types/node": "^26.4.1",
65
+ "@typescript-eslint/parser": "^8.69.0",
66
+ "@typescript-eslint/rule-tester": "^8.69.0",
67
+ "bumpp": "^12.3.0",
68
+ "eslint": "^10.10.0",
69
+ "husky": "^9.1.7",
70
+ "nano-staged": "^1.0.2",
71
+ "npm-run-all2": "^9.0.3",
72
+ "oxfmt": "^0.66.0",
73
+ "oxlint": "^1.81.0",
74
+ "tsdown": "^0.23.0",
75
+ "typescript": "~6.0.3",
76
+ "vitest": "^5.0.0"
77
+ },
78
+ "peerDependencies": {
79
+ "eslint": "^9.0.0 || ^10.0.0"
80
+ },
81
+ "nano-staged": {
82
+ "*.{js,ts,mjs,tsx}": "oxlint --fix --no-error-on-unmatched-pattern",
83
+ "*": "oxfmt --no-error-on-unmatched-pattern"
84
+ },
85
+ "engines": {
86
+ "node": "^22.13.0 || >=24.0.0"
87
+ },
88
+ "packageManager": "pnpm@12.3.4"
89
+ }