feathers-casl
Version:
Add access control with CASL to your feathers application.
112 lines • 3 kB
JSON
{
"name": "feathers-casl",
"version": "2.2.4",
"description": "Add access control with CASL to your feathers application.",
"author": "fratzinger",
"homepage": "https://feathers-casl.netlify.app/",
"repository": {
"type": "git",
"url": "https://github.com/fratzinger/feathers-casl"
},
"keywords": [
"feathers",
"feathers.js",
"feathers-plugin",
"casl",
"permissions",
"authorization"
],
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"dist/**"
],
"engines": {
"node": ">= 22.0.0"
},
"peerDependencies": {
"@casl/ability": "6.x",
"@feathersjs/feathers": "^5.0.0"
},
"dependencies": {
"@feathersjs/errors": "^5.0.44",
"@feathersjs/feathers": "^5.0.44",
"@feathersjs/transport-commons": "^5.0.44",
"@fratzinger/feathers-utils": "^7.0.1",
"feathers-utils": "^10.0.0",
"lodash": "^4.18.1"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.2",
"@casl/ability": "^6.8.1",
"@feathers-community/eslint-config": "^0.1.0",
"@feathersjs/adapter-commons": "^5.0.44",
"@feathersjs/authentication": "^5.0.44",
"@feathersjs/authentication-local": "^5.0.44",
"@feathersjs/configuration": "^5.0.44",
"@feathersjs/express": "^5.0.44",
"@feathersjs/knex": "^5.0.44",
"@feathersjs/memory": "^5.0.44",
"@feathersjs/mongodb": "^5.0.44",
"@feathersjs/socketio": "^5.0.44",
"@feathersjs/socketio-client": "^5.0.44",
"@fratzinger/feathers-kysely": "^0.5.1",
"@tsconfig/node22": "^22.0.5",
"@types/cors": "^2.8.19",
"@types/lodash": "^4.17.24",
"@types/node": "^25.6.2",
"@types/pg": "^8.20.0",
"@vitest/coverage-v8": "^4.1.5",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"eslint": "^10.3.0",
"feathers-fletching": "^2.0.7",
"feathers-knex": "^8.0.1",
"feathers-sequelize": "^7.0.3",
"get-port": "^7.2.0",
"helmet": "^8.1.0",
"knex": "^3.2.10",
"kysely": "^0.29.0",
"mongodb": "^7.2.0",
"mongodb-memory-server": "^11.1.0",
"np": "^11.2.0",
"objection": "^3.1.5",
"pg": "^8.20.0",
"prettier": "^3.8.3",
"sequelize": "^6.37.8",
"socket.io-client": "^4.8.3",
"sqlite3": "^6.0.1",
"tsdown": "^0.22.0",
"type-fest": "^5.6.0",
"typescript": "^6.0.3",
"unrun": "^0.3.0",
"vite": "^8.0.12",
"vitepress": "^1.6.4",
"vitest": "^4.1.5"
},
"scripts": {
"build": "tsdown",
"version": "npm run build",
"release": "np",
"vitest": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint",
"typecheck": "tsc --noEmit",
"attw": "attw --pack . --profile esm-only",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs"
}
}