-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.28 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.28 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
{
"name": "@lexmount/browser-skill-installer",
"version": "0.2.1",
"description": "Installer for the Lexmount browser skill backed by lex-browser-runtime",
"type": "module",
"scripts": {
"release:npm": "python ./scripts/publish-npm.py",
"release:npm:check": "python ./scripts/publish-npm.py --skip-publish --skip-login-check"
},
"bin": {
"lexmount-browser-skill-install": "./tools/install-skill.mjs"
},
"keywords": [
"codex",
"claude-code",
"skill",
"lexmount",
"browser"
],
"author": {
"name": "Lexmount Team",
"email": "[email protected]"
},
"license": "MIT",
"homepage": "https://github.com/lexmount/browser-skill",
"repository": {
"type": "git",
"url": "https://github.com/lexmount/browser-skill"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/",
"provenance": false
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"README.md",
"skills/lexmount-browser/.env.example",
"skills/lexmount-browser/SKILL.md",
"skills/lexmount-browser/examples/basic-open.json",
"skills/lexmount-browser/scripts/bootstrap_runtime.py",
"skills/lexmount-browser/scripts/lexmount-browser",
"tools/install-skill.mjs",
"tools/install-skill-win.mjs"
]
}