UNPKG

extension

Version:

Create cross-browser extensions with no build configuration.

102 lines 2.31 kB
{ "license": "MIT", "repository": { "type": "git", "url": "https://github.com/extension-js/extension.js.git", "directory": "programs/cli" }, "engines": { "node": ">=18" }, "exports": { ".": { "types": "./dist/cli.d.ts", "import": "./dist/cli.js", "require": "./dist/cli.js" } }, "main": "./dist/cli.js", "types": "./dist/cli.d.ts", "files": [ "dist", "types" ], "bin": { "extension": "./dist/cli.js" }, "name": "extension", "version": "2.1.3", "description": "Create cross-browser extensions with no build configuration.", "homepage": "https://extension.js.org/", "author": { "name": "Cezar Augusto", "email": "boss@cezaraugusto.net", "url": "https://cezaraugusto.com" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org", "tag": "latest" }, "keywords": [ "zero-config", "build", "develop", "browser", "extension", "chrome extension", "edge extension", "firefox extension", "safari extension", "web", "react", "typescript", "webextension", "browser-extension", "chrome-extension", "firefox-addon", "edge-extension", "safari-web-extension", "manifest-v3", "mv3", "cross-browser", "content-script", "background-script", "devtools", "create-extension", "scaffold", "starter-template", "boilerplate", "cli" ], "dependencies": { "@types/chrome": "^0.0.287", "@types/node": "^22.10.1", "@types/react": "^19.0.1", "@types/react-dom": "^19.0.1", "@types/webextension-polyfill": "0.12.3", "commander": "^12.1.0", "pintor": "0.3.0", "semver": "^7.6.3", "update-check": "^1.5.4", "webextension-polyfill": "^0.12.0", "extension-create": "2.1.2", "extension-develop": "2.1.3" }, "devDependencies": { "@rslib/core": "^0.6.9", "@types/mock-fs": "^4.13.4", "@types/semver": "^7.5.8", "mock-fs": "^5.4.1", "tsconfig": "*", "typescript": "5.7.2", "vitest": "3.2.2" }, "scripts": { "watch": "rslib build --watch", "compile": "rslib build", "clean": "rm -rf dist", "test": "echo \"Note: no test specified\" && exit 0", "test:cli": "vitest run" } }