{ "name": "plugins-manager", "version": "0.2.3", "publishConfig": { "access": "public" }, "description": "Helper for handling Plugins", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/modernweb-dev/rocket.git", "directory": "packages/plugins-manager" }, "author": "Modern Web (https://modern-web.dev/)", "homepage": "https://rocket.modern-web.dev/docs/tools/plugins-manager/", "main": "./dist/index.cjs", "type": "module", "exports": { ".": { "require": "./dist/index.cjs", "default": "./index.js" } }, "scripts": { "build:package": "rimraf dist && esbuild --platform=node --format=cjs --bundle --outfile=dist/index.cjs ./index.js", "test": "mocha --timeout 5000 test-node/**/*.test.{js,cjs} test-node/*.test.{js,cjs}", "test:watch": "onchange 'src/**/*.{js,cjs}' 'test-node/**/*.{js,cjs}' -- npm test", "types:copy": "copyfiles \"./types/**/*.d.ts\" dist-types/" }, "files": [ "*.js", "dist", "dist-types", "src" ], "types": "dist-types/index.d.ts" }