-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 1.44 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
{
"name": "@iad-os/react-ghost-auth",
"version": "2.1.3",
"maintainers": [
{
"name": "Daniele Fiungo",
"email": "daniele.fiungo@iad2.it"
},
{
"name": "Nicola Vurchio",
"email": "nicola.vurchio@iad2.it"
},
{
"name": "Irene La Bollita",
"email": "irene.labollita@iad2.it"
}
],
"author": "Nicola Vurchio <nicola.vurchio@iad2.it>",
"main": "dist/index.js",
"module": "dist/index.es.js",
"jsnext:main": "dist/index.es.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/lodash.omitby": "^4.6.7",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.2.6",
"prettier": "3.0.0",
"rollup": "^3.26.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.35.0",
"typescript": "^5.1.6"
},
"scripts": {
"prepack": "npm run build",
"build": "rm -rf dist && rollup -c --bundleConfigAsCjs",
"watch": "rollup -cw"
},
"peerDependencies": {
"react": ">=16.14.0"
},
"keywords": [
"react",
"ghost",
"ghost auth"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/iad-os/react-ghost-auth.git"
},
"dependencies": {
"lodash.omitby": "^4.6.0"
},
"engines": {
"npm": ">=8.0.0",
"node": ">=16.0.0"
}
}