mirror of
https://github.com/modernweb-dev/rocket.git
synced 2026-03-10 08:51:24 +00:00
39 lines
1.2 KiB
JSON
39 lines
1.2 KiB
JSON
{
|
|
"name": "plugins-manager",
|
|
"version": "0.3.0",
|
|
"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/",
|
|
"prepublishOnly": "publish-docs --github-url https://github.com/modernweb-dev/rocket/ --git-root-dir ../../"
|
|
},
|
|
"files": [
|
|
"*.js",
|
|
"dist",
|
|
"dist-types",
|
|
"src"
|
|
],
|
|
"types": "dist-types/index.d.ts"
|
|
}
|