feathers-casl
Version:
Add access control with CASL to your feathers application.
109 lines • 2.91 kB
JSON
{
"name": "feathers-casl",
"version": "2.2.1",
"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.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"dist/**"
],
"engines": {
"node": ">= 20.0.0"
},
"peerDependencies": {
"@casl/ability": "6.x",
"@feathersjs/feathers": "^5.0.0"
},
"dependencies": {
"@feathersjs/errors": "^5.0.33",
"@feathersjs/feathers": "^5.0.33",
"@feathersjs/transport-commons": "^5.0.33",
"feathers-hooks-common": "^8.2.1",
"feathers-utils": "^7.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@casl/ability": "^6.7.3",
"@feathers-community/eslint-config": "^0.0.4",
"@feathersjs/adapter-commons": "^5.0.33",
"@feathersjs/authentication": "^5.0.33",
"@feathersjs/authentication-local": "^5.0.33",
"@feathersjs/configuration": "^5.0.33",
"@feathersjs/express": "^5.0.33",
"@feathersjs/knex": "^5.0.33",
"@feathersjs/memory": "^5.0.33",
"@feathersjs/mongodb": "^5.0.33",
"@feathersjs/socketio": "^5.0.33",
"@feathersjs/socketio-client": "^5.0.33",
"@seald-io/nedb": "^4.0.4",
"@tsconfig/node22": "^22.0.0",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.9",
"@vitest/coverage-v8": "^3.0.7",
"cors": "^2.8.5",
"eslint": "^9.21.0",
"feathers-fletching": "^2.0.3",
"feathers-knex": "^8.0.1",
"feathers-mongoose": "^8.5.1",
"feathers-nedb": "^7.0.1",
"feathers-objection": "^7.6.0",
"feathers-sequelize": "^7.0.3",
"get-port": "^7.1.0",
"helmet": "^8.0.0",
"knex": "^3.1.0",
"mongodb": "^6.14.1",
"mongodb-memory-server": "^10.1.4",
"mongoose": "^8.12.1",
"np": "^10.2.0",
"objection": "^3.1.5",
"prettier": "^3.5.3",
"sequelize": "^6.37.6",
"socket.io-client": "^4.8.1",
"sqlite3": "^5.1.7",
"type-fest": "^4.37.0",
"typescript": "^5.8.2",
"unbuild": "^3.5.0",
"vite": "^6.2.0",
"vitepress": "^1.6.3",
"vitest": "^3.0.7"
},
"scripts": {
"build": "unbuild",
"version": "npm run build",
"release": "np",
"vitest": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "eslint",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs"
}
}