| 12345678910111213141516171819202122232425262728293031323334 |
- {
- "name": "@growi/ui",
- "version": "6.3.0-RC.0",
- "description": "GROWI UI Libraries",
- "license": "MIT",
- "keywords": [
- "growi"
- ],
- "type": "module",
- "files": [
- "dist"
- ],
- "scripts": {
- "build": "vite build",
- "clean": "shx rm -rf dist",
- "dev": "vite build --mode dev",
- "watch": "yarn dev -w --emptyOutDir=false",
- "lint:js": "yarn eslint **/*.{js,ts}",
- "lint:typecheck": "tsc",
- "lint": "npm-run-all -p lint:*",
- "version": "yarn version --no-git-tag-version --preid=RC"
- },
- "dependencies": {
- "@growi/core": "link:../core"
- },
- "devDependencies": {
- "reactstrap": "8.10.1"
- },
- "peerDependencies": {
- "next": "^13",
- "react": "^18.2.0",
- "react-dom": "^18.2.0"
- }
- }
|