-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
87 lines (87 loc) · 2.16 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
{
"name": "feathers-trigger",
"version": "3.1.0",
"description": "Add triggers and actions to your feathers app.",
"author": "fratzinger",
"homepage": "https://feathers-trigger.netlify.app/",
"repository": {
"type": "git",
"url": "https://github.com/fratzinger/feathers-trigger"
},
"engines": {
"node": ">= 16"
},
"keywords": [
"feathers",
"feathers.js",
"feathers-plugin",
"trigger",
"actions",
"notify",
"notification"
],
"license": "MIT",
"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/**"
],
"packageManager": "pnpm@8.8.0",
"scripts": {
"build": "unbuild",
"version": "npm run build",
"release": "np",
"test": "vitest run",
"vitest": "vitest",
"coverage": "vitest run --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"dependencies": {
"fast-copy": "^3.0.2",
"feathers-hooks-common": "^8.2.1",
"feathers-utils": "^7.0.0",
"lodash": "^4.17.21",
"object-replace-mustache": "^2.3.0",
"sift": "^17.1.3"
},
"devDependencies": {
"@feathersjs/feathers": "^5.0.31",
"@feathersjs/memory": "^5.0.31",
"@types/lodash": "^4.17.13",
"@types/node": "^22.10.1",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitest/coverage-v8": "^2.1.8",
"date-fns": "^4.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"feathers-fletching": "^2.0.3",
"feathers-graph-populate": "^4.2.0",
"np": "^10.1.0",
"typescript": "^5.7.2",
"unbuild": "^2.0.0",
"vite": "^6.0.3",
"vitepress": "^1.5.0",
"vitest": "^2.1.8"
},
"peerDependencies": {
"@feathersjs/feathers": "^5.0.0"
}
}