-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
115 lines (115 loc) · 3.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "feathers-casl",
"version": "2.2.0",
"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"
},
"packageManager": "pnpm@9.15.0",
"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"
},
"peerDependencies": {
"@casl/ability": "6.x",
"@feathersjs/feathers": "^5.0.0"
},
"dependencies": {
"@feathersjs/errors": "^5.0.31",
"@feathersjs/feathers": "^5.0.31",
"@feathersjs/transport-commons": "^5.0.31",
"feathers-hooks-common": "^8.2.1",
"feathers-utils": "^7.0.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@casl/ability": "^6.7.2",
"@eslint/js": "^9.16.0",
"@feathersjs/adapter-commons": "^5.0.31",
"@feathersjs/authentication": "^5.0.31",
"@feathersjs/authentication-local": "^5.0.31",
"@feathersjs/configuration": "^5.0.31",
"@feathersjs/express": "^5.0.31",
"@feathersjs/knex": "^5.0.31",
"@feathersjs/memory": "^5.0.31",
"@feathersjs/mongodb": "^5.0.31",
"@feathersjs/socketio": "^5.0.31",
"@feathersjs/socketio-client": "^5.0.31",
"@seald-io/nedb": "^4.0.4",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vitest/coverage-v8": "^2.1.8",
"cors": "^2.8.5",
"eslint": "^9.16.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import-x": "^4.5.0",
"eslint-plugin-prettier": "^5.2.1",
"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.12.0",
"mongodb-memory-server": "^10.1.2",
"mongoose": "^8.8.4",
"np": "^10.1.0",
"objection": "^3.1.5",
"prettier": "^3.4.2",
"sequelize": "^6.37.5",
"socket.io-client": "^4.8.1",
"sqlite3": "^5.1.7",
"type-fest": "^4.30.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0",
"unbuild": "^2.0.0",
"vite": "^6.0.3",
"vitepress": "^1.5.0",
"vitest": "^2.1.8"
}
}