-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (71 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (71 loc) · 1.83 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
70
71
72
73
{
"name": "@extension.dev/skill",
"type": "module",
"version": "0.5.1",
"description": "Agent Skill that teaches AI coding agents (Claude Code, Cursor, Copilot, Codex) to build, debug, and publish browser extensions for Chrome, Edge, Firefox, Safari, and every Chromium- or Gecko-based browser (Brave, Opera, Vivaldi, Yandex, Waterfox, LibreWolf): Manifest V3 gotchas, cross-browser manifest rules, and live-browser verification playbooks. Powered by extension.dev and Extension.js.",
"license": "Apache-2.0",
"author": {
"name": "Cezar Augusto",
"email": "hello@extension.dev",
"url": "https://cezaraugusto.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/extensiondev/skill.git"
},
"bugs": {
"url": "https://github.com/extensiondev/skill/issues"
},
"homepage": "https://extension.dev",
"engines": {
"node": ">=20.18"
},
"packageManager": "pnpm@10.19.0",
"files": [
"skills",
".claude-plugin",
"README.md",
"CHANGELOG.md",
"LICENSE",
"NOTICE",
"TRADEMARK.md"
],
"agents": {
"skills": [
"./skills/extension-dev"
]
},
"scripts": {
"test": "node --test test/*.test.mjs",
"prepack": "node scripts/readme-logo-width.mjs npm",
"postpack": "node scripts/readme-logo-width.mjs github"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org"
},
"keywords": [
"agent-skill",
"agent-skills",
"claude-skill",
"skills",
"anthropic",
"claude",
"claude-code",
"cursor",
"github-copilot",
"codex",
"ai-agent",
"browser-extension",
"chrome-extension",
"firefox-addon",
"edge-extension",
"safari-web-extension",
"manifest-v3",
"webextension",
"cross-browser",
"extension.dev",
"extension.js"
]
}