-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 933 Bytes
/
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
{
"name": "@schibsted/react-account",
"version": "1.8.1",
"description": "React Context Provider and Hook making it easier to use Schibsted Account in your React app",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js",
"./*.js": "./dist/*.js"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/schibsted/react-account.git"
},
"author": "Sverre Norberg-Schulz Hagen",
"license": "MIT",
"scripts": {
"build": "esbuild index.js --bundle --minify --format=esm --external:react --outdir=dist"
},
"keywords": [
"account"
],
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"devDependencies": {
"@schibsted/account-sdk-browser": "^4.6.0",
"@semantic-release/git": "^10.0.1",
"esbuild": "^0.15.7"
},
"peerDependencies": {
"react": ">=17"
}
}