-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
77 lines (77 loc) · 1.88 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
{
"name": "feathers-graph-populate",
"description": "Add lightning fast, GraphQL-like populates to your FeathersJS API.",
"version": "4.2.0",
"homepage": "https://feathers-graph-populate.netlify.app/",
"repository": {
"type": "git",
"url": "https://github.com/marshallswain/feathers-graph-populate"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"feathers",
"feathers.js",
"feathers-plugin",
"hooks",
"populate"
],
"author": {
"name": "Marshall Thompson",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"src/**",
"dist/**"
],
"engines": {
"node": ">= 18"
},
"scripts": {
"compile": "shx rm -rf dist/ && tsup src/index.ts --format cjs,esm --dts",
"version": "npm run compile",
"release": "np",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "vitest run",
"vitest": "vitest",
"coverage": "vitest run --coverage",
"docs": "vitepress dev docs",
"docs:build": "vitepress build docs"
},
"peerDependencies": {
"@feathersjs/feathers": "^5.0.0"
},
"dependencies": {
"@feathersjs/commons": "^5.0.14",
"lodash": "^4.17.21"
},
"devDependencies": {
"@feathersjs/errors": "^5.0.14",
"@feathersjs/feathers": "^5.0.14",
"@feathersjs/memory": "^5.0.14",
"@types/lodash": "^4.14.202",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"np": "^9.2.0",
"shx": "^0.3.4",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vite": "^5.0.11",
"vitepress": "^1.0.0-rc.39",
"vitest": "^1.2.1"
}
}