-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 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
{
"name": "@affinidi/affinidi-react-auth",
"version": "1.0.12",
"description": "Affinidi react auth library for creating Affinidi Login Button",
"author": "affinidi.com",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"test": "jest",
"prepare": "npm run build",
"clean": "rm -rf ./dist",
"build": "npm run clean && tsc",
"watch": "tsc -w",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/affinidi/affinidi-react-auth.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"react-component",
"affinidi-login",
"react",
"passport-affinidi"
],
"dependencies": {
"@affinidi/client-aiv-extension": "^1.6.1",
"nanoid": "^5.0.1",
"randomstring": "^1.3.0",
"react": ">=17",
"react-dom": "^18.2.0",
"styled-components": "^6.0.8",
"tslib": "^2.3.1",
"typescript": "^5.2.2"
},
"devDependencies": {
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@types/randomstring": "^1.1.9",
"@types/react": "^18.2.24",
"@typescript-eslint/eslint-plugin": "^6.7.3",
"eslint": "^8.49.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-mocha": "^10.1.0",
"eslint-plugin-prettier": "^5.0.0",
"semantic-release": "^21.1.2"
},
"peerDependencies": {
"react": ">=17"
},
"directories": {
"lib": "dist"
}
}