@mcptoolshop/websketch-ir 0.2.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.
Files changed (1) hide show
  1. package/package.json +74 -0
package/package.json ADDED
@@ -0,0 +1,74 @@
1
+ {
2
+ "name": "@mcptoolshop/websketch-ir",
3
+ "version": "0.2.0",
4
+ "description": "Grammar-based representation of web UI for LLM consumption",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ },
13
+ "./grammar": {
14
+ "types": "./dist/grammar.d.ts",
15
+ "import": "./dist/grammar.js"
16
+ }
17
+ },
18
+ "files": [
19
+ "dist/**/*",
20
+ "src/**/*",
21
+ "README.md",
22
+ "LICENSE"
23
+ ],
24
+ "scripts": {
25
+ "build": "tsc",
26
+ "clean": "rimraf dist",
27
+ "typecheck": "tsc --noEmit",
28
+ "lint": "eslint 'src/**/*.{ts,tsx}'",
29
+ "test": "node --experimental-vm-modules node_modules/vitest/vitest.mjs",
30
+ "test:run": "node --experimental-vm-modules node_modules/vitest/vitest.mjs run",
31
+ "coverage": "node --experimental-vm-modules node_modules/vitest/vitest.mjs run --coverage",
32
+ "validate": "npm run clean && npm run typecheck && npm run lint && npm run build && npm run test:run",
33
+ "prepublishOnly": "npm run clean && npm run build && npm run test:run"
34
+ },
35
+ "keywords": [
36
+ "websketch",
37
+ "ui-testing",
38
+ "web-automation",
39
+ "llm",
40
+ "ai-agents",
41
+ "browser-automation",
42
+ "ui-representation",
43
+ "ascii-art",
44
+ "diff",
45
+ "fingerprint"
46
+ ],
47
+ "author": "MCP Tool Shop",
48
+ "license": "MIT",
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/mcp-tool-shop/websketch-ir.git"
52
+ },
53
+ "bugs": {
54
+ "url": "https://github.com/mcp-tool-shop/websketch-ir/issues"
55
+ },
56
+ "homepage": "https://github.com/mcp-tool-shop/websketch-ir#readme",
57
+ "devDependencies": {
58
+ "@types/node": "^20.10.0",
59
+ "@typescript-eslint/eslint-plugin": "^6.15.0",
60
+ "@typescript-eslint/parser": "^6.15.0",
61
+ "@vitest/coverage-v8": "^1.1.0",
62
+ "eslint": "^8.56.0",
63
+ "rimraf": "^5.0.5",
64
+ "typescript": "^5.3.3",
65
+ "vitest": "^1.1.0"
66
+ },
67
+ "engines": {
68
+ "node": ">=18.0.0"
69
+ },
70
+ "publishConfig": {
71
+ "access": "public",
72
+ "registry": "https://registry.npmjs.org"
73
+ }
74
+ }