Files
rocket/packages/plugins-manager/package.json
github-actions[bot] aa93c2ad89 Version Packages
2021-07-11 14:57:17 +03:00

38 lines
1.1 KiB
JSON

{
"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 <hello@modern-web.dev> (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"
}