@seed-fe/permission
Version:
Framework-agnostic permission management library with batching, caching, and debouncing
62 lines (61 loc) • 1.52 kB
JSON
{
"name": "@seed-fe/permission",
"version": "1.0.0-alpha.1",
"description": "Framework-agnostic permission management library with batching, caching, and debouncing",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"sideEffects": false,
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsup --watch",
"check": "biome check --write",
"format": "biome format --write",
"build": "tsup",
"clean": "rm -rf dist",
"prebuild": "pnpm run clean",
"prepublishOnly": "pnpm run test && pnpm run build",
"test": "vitest run"
},
"keywords": [
"permission",
"authorization",
"access-control",
"permission-management"
],
"author": "xianghongai",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xianghongai/seed-fe-permission.git"
},
"bugs": {
"url": "https://github.com/xianghongai/seed-fe-permission/issues"
},
"homepage": "https://github.com/xianghongai/seed-fe-permission#readme",
"dependencies": {
"@seed-fe/batch-request": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.1.0",
"@vitest/coverage-v8": "^3.2.4",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
}
}