-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
package.json
File metadata and controls
63 lines (63 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
{
"name": "@predicatesystems/openclaw-snapshot-skill",
"version": "0.4.0",
"description": "OpenClaw skill for ML-powered DOM snapshots - 95% token reduction for browser automation",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "jest --passWithNoTests",
"lint": "eslint src --ext .ts",
"demo": "ts-node demo/compare.ts",
"demo:llm": "ts-node demo/llm-action.ts",
"demo:login": "ts-node demo/login-demo.ts",
"prepublishOnly": "npm run build"
},
"bin": {
"predicate-snapshot": "./dist/index.js"
},
"keywords": [
"openclaw",
"skill",
"browser-automation",
"dom-snapshot",
"ai-agent",
"token-reduction",
"predicate"
],
"author": "Predicate Systems",
"license": "(MIT OR Apache-2.0)",
"repository": {
"type": "git",
"url": "https://github.com/predicate-systems/predicate-snapshot-skill.git"
},
"homepage": "https://predicate.systems/skills/snapshot",
"dependencies": {
"@predicatesystems/runtime": "^1.1.2"
},
"peerDependencies": {
"playwright": "^1.40.0"
},
"devDependencies": {
"@types/node": "^20.19.33",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"dotenv": "^16.6.1",
"eslint": "^8.57.0",
"gpt-tokenizer": "^2.1.0",
"jest": "^29.0.0",
"playwright": "^1.58.2",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=20.0.0"
},
"files": [
"dist",
"SKILL.md",
"README.md"
]
}