-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.68 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
{
"name": "ic-use-internet-identity",
"version": "0.1.0",
"description": "Hook that makes it easy to integrate IC Internet Identity into your React application.",
"author": "Kristofer Lund <kristofer@kristoferlund.se>",
"repository": {
"type": "git",
"url": "https://github.com/kristoferlund/ic-use-internet-identity-demo"
},
"bugs": "https://github.com/kristoferlund/ic-use-internet-identity-demo/issues",
"homepage": "https://github.com/kristoferlund/ic-use-internet-identity-demo",
"keywords": [
"dfinity",
"ic",
"internet computer",
"internet identity",
"react",
"hook"
],
"type": "module",
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint ./src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"build": "rm -rf dist && node build.js && tsc --emitDeclarationOnly",
"dev": "run-p dev:*",
"dev:tsc": "tsc --watch --preserveWatchOutput",
"dev:esbuild": "npm run build --watch"
},
"license": "MIT",
"dependencies": {},
"peerDependencies": {
"react": ">=18.0.0",
"@dfinity/agent": ">=2.1.2",
"@dfinity/auth-client": ">=2.1.2",
"@dfinity/identity": ">=2.1.2"
},
"devDependencies": {
"@types/node": "^20.10.6",
"@types/react": "^18.2.39",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"esbuild": "^0.19.5",
"eslint": "^8.53.0",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"typescript": "^5.2.2"
}
}