-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.13 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
{
"name": "@elevantiq/storyblok-deep-relations-resolver",
"version": "2.2.0",
"repository": {
"url": "git+https://github.com/elevantiq/storyblok-storyblok-deep-relations-resolver.git"
},
"author": "David Höck <[email protected]>",
"license": "MIT",
"description": "Resolve relations more than 2 levels deep",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"packageManager": "[email protected]",
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "vite build",
"publish": "npm publish --access public --scope @elevantiq"
},
"release": {
"branches": [
"main"
]
},
"peerDependencies": {
"@storyblok/react": "^3.0.0 || ^4.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@alpin11/eslint-config": "^0.6.2",
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^20.14.2",
"path": "^0.12.7",
"vite": "^5.2",
"vite-plugin-dts": "^4.3.0"
}
}