/
tm-project
/
rbac-react-system
Обзор
Документация
Войти
/
tm-project
/
rbac-react-system
Код
Запросы
0
Пакеты
0
Релизы
1
CI/CD
Аналитика
Безопасность
gitverse
package.json
85 строк
3 KB
Artem
chore: release v1.0.4
30 ноя 2025, 22:51
30 ноя 2025, 22:51
f6f509c
Код
Авторство
О чём код?
{ "name": "rbac-react-system", "version": "1.0.4", "description": "Enterprise-grade Role-Based Access Control library for React with Clean Architecture", "main": "build/cjs/index.js", "module": "build/esm/index.js", "types": "build/types/index.d.ts", "exports": { ".": { "import": "./build/esm/index.js", "require": "./build/cjs/index.js", "types": "./build/types/index.d.ts" } }, "files": [ "build", "README.md", "LICENSE" ], "scripts": { "clean": "rm -rf build", "build:esm": "tsc --project tsconfig.json", "build:cjs": "tsc --project tsconfig.cjs.json", "build": "npm run clean && npm run build:esm && npm run build:cjs", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.{ts,tsx}", "type-check": "tsc --noEmit", "prepublishOnly": "npm run build && npm test", "format": "prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"", "format:check": "prettier --check \"src/**/*.{js,jsx,ts,tsx,json,css,md}\"", "pack:local": "bash scripts/pack-local.sh", "yalc:publish": "npm run build && yalc publish", "yalc:push": "npm run build && yalc push", "yalc:setup": "bash scripts/setup-yalc.sh", "dev:watch": "bash scripts/watch-and-push.sh", "release:patch": "bash scripts/release.sh patch", "release:minor": "bash scripts/release.sh minor", "release:major": "bash scripts/release.sh major" }, "keywords": [ "react", "rbac", "access-control", "authorization", "roles", "permissions", "clean-architecture", "typescript" ], "author": "TM Project <tm-project@asdev.ru>", "license": "MIT", "repository": { "type": "git", "url": "https://gitlab.asdev.ru/tm-project/rbac-react-system.git" }, "publishConfig": { "access": "public" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" }, "devDependencies": { "@testing-library/jest-dom": "^6.9.1", "@testing-library/react": "^14.0.0", "@types/jest": "^29.5.0", "@types/react": "^18.2.0", "@types/react-dom": "^18.2.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.45.0", "eslint-plugin-react": "^7.33.0", "eslint-plugin-react-hooks": "^4.6.0", "jest": "^29.6.0", "jest-environment-jsdom": "^29.6.0", "prettier": "3.7.1", "react": "^18.2.0", "react-dom": "^18.2.0", "ts-jest": "^29.1.0", "typescript": "^5.1.0" }, "sideEffects": false }