UNPKG

extension

Version:

Create cross-browser extensions with no build configuration.

114 lines (113 loc) 2.47 kB
{ "license": "MIT", "repository": { "type": "git", "url": "git+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", "typesVersions": { "*": { "types": [ "./types/index.d.ts" ], "types/*": [ "./types/*" ] } }, "files": [ "dist", "types" ], "bin": { "extension": "./dist/cli.js" }, "name": "extension", "version": "3.1.1", "description": "Create cross-browser extensions with no build configuration.", "homepage": "https://extension.js.org/", "bugs": { "url": "https://github.com/extension-js/extension.js/issues" }, "author": { "name": "Cezar Augusto", "email": "boss@cezaraugusto.net", "url": "https://cezaraugusto.com" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org" }, "scripts": { "prepublishOnly": "pnpm run compile", "compile": "rslib build", "watch": "rslib build --watch", "test": "vitest run" }, "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": { "extension-create": "^3.1.1", "extension-develop": "^3.1.1", "commander": "^14.0.2", "pintor": "0.3.0", "semver": "^7.7.3", "update-check": "^1.5.4" }, "devDependencies": { "@rslib/core": "^0.19.2", "@types/chrome": "^0.1.33", "@types/node": "^25.0.9", "@types/react": "^19.2.8", "@types/react-dom": "^19.2.3", "@types/webextension-polyfill": "0.12.4", "@types/mock-fs": "^4.13.4", "@types/semver": "^7.7.1", "mock-fs": "^5.5.0", "webextension-polyfill": "^0.12.0", "tsconfig": "*", "typescript": "5.9.3", "vitest": "^4.0.17" } }