mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
83677e31a2
* feat: server reload watch mode * chore:update format
42 lines
1.2 KiB
JSON
42 lines
1.2 KiB
JSON
{
|
|
"name": "@verdaccio/streams",
|
|
"version": "10.0.0-alpha.1",
|
|
"description": "Stream extension for Verdaccio",
|
|
"keywords": [
|
|
"verdaccio",
|
|
"streams"
|
|
],
|
|
"main": "./build/index.js",
|
|
"types": "./build/index.d.ts",
|
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
"license": "MIT",
|
|
"homepage": "https://verdaccio.org",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/verdaccio/verdaccio",
|
|
"directory": "packages/core/streams"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/verdaccio/verdaccio/issues"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"devDependencies": {
|
|
"@verdaccio/types": "workspace:10.0.0-alpha.1"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf ./build",
|
|
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest",
|
|
"type-check": "tsc --noEmit -p tsconfig.build.json",
|
|
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
|
|
"build:js": "babel src/ --out-dir build/ --copy-files --extensions \".ts,.tsx\" --source-maps",
|
|
"watch": "pnpm build:js -- --watch",
|
|
"build": "pnpm run build:js && pnpm run build:types"
|
|
},
|
|
"funding": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/verdaccio"
|
|
}
|
|
}
|