mirror of
https://github.com/verdaccio/verdaccio.git
synced 2024-11-13 03:35:52 +01:00
29 lines
863 B
JSON
29 lines
863 B
JSON
{
|
|
"name": "@verdaccio/ui-components",
|
|
"version": "2.0.0-alpha.0",
|
|
"description": "theme ui component",
|
|
"author": "Juan Picado <juanpicado19@gmail.com>",
|
|
"license": "MIT",
|
|
"homepage": "https://verdaccio.org",
|
|
"main": "./build/index.js",
|
|
"types": "build/index.d.ts",
|
|
"files": [
|
|
"./build"
|
|
],
|
|
"peerDependencies": {
|
|
"@emotion/react": "11.10.5",
|
|
"@emotion/styled": "11.10.5",
|
|
"@mui/material": "5.11.1",
|
|
"@mui/icons-material": "5.11.0",
|
|
"react": "18.2.0",
|
|
"react-dom": "18.2.0"
|
|
},
|
|
"scripts": {
|
|
"clean": "rimraf ./build",
|
|
"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",
|
|
"build": "pnpm run build:js && pnpm run build:types"
|
|
}
|
|
}
|