-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.68 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
{
"name": "feathers-utils",
"version": "7.0.1",
"description": "Some utils for projects using '@feathersjs/feathers'",
"author": "fratzinger",
"repository": {
"type": "git",
"url": "https://github.com/fratzinger/feathers-utils"
},
"engines": {
"node": ">= 18"
},
"homepage": "https://github.com/fratzinger/feathers-utils",
"license": "MIT",
"packageManager": "pnpm@9.12.1",
"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",
"type": "module",
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"lib/**",
"dist/**"
],
"scripts": {
"build": "unbuild",
"version": "npm run build",
"release": "np",
"test": "vitest run",
"vitest": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.33",
"@feathersjs/errors": "^5.0.33",
"@feathersjs/feathers": "^5.0.33",
"fast-equals": "^5.2.2",
"feathers-hooks-common": "^8.2.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathers-community/eslint-config": "^0.0.4",
"@feathersjs/memory": "^5.0.33",
"@tsconfig/node22": "^22.0.0",
"@types/lodash": "^4.17.16",
"@types/node": "^22.13.9",
"@vitest/coverage-v8": "^3.0.7",
"eslint": "^9.21.0",
"np": "^10.2.0",
"prettier": "^3.5.3",
"shx": "^0.3.4",
"typescript": "^5.8.2",
"unbuild": "^3.5.0",
"vitest": "^3.0.7"
},
"peerDependencies": {
"@feathersjs/feathers": "^5.0.0"
}
}