-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
72 lines (72 loc) · 2.08 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
71
72
{
"name": "@iden3/js-iden3-auth",
"version": "1.6.0",
"description": "iden3-auth implementation in JavaScript",
"main": "dist/cjs/index.js",
"source": "./src/index.ts",
"typings": "dist/types/index.d.ts",
"files": [
"dist",
"patches"
],
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build:types": "tsc -p tsconfig.build.json && tsc-alias",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"lint": "eslint src test --ext .ts src/** test/*.ts",
"lint:check": "eslint --ext .ts src/** test/*.ts",
"build": "npm run clean && tsc --module commonjs -p tsconfig.build.json && tsc-alias",
"clean": "rimraf ./dist"
},
"directories": {
"templates": "templates"
},
"keywords": [
"iden3"
],
"author": "iden3",
"license": "MIT or Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/iden3/js-iden3-auth"
},
"dependencies": {
"@0xpolygonid/js-sdk": "1.20.0",
"@iden3/js-crypto": "1.1.0",
"@iden3/js-iden3-core": "1.4.1",
"@iden3/js-jsonld-merklization": "1.4.1",
"@iden3/js-jwz": "1.8.0",
"@iden3/js-merkletree": "1.3.1",
"did-resolver": "^4.1.0",
"ethers": "^5.4.0",
"tslib": "^2.6.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"@cspell/eslint-plugin": "^8.14.2",
"@iden3/eslint-config": "https://github.com/iden3/eslint-config",
"@typechain/ethers-v5": "^10.2.0",
"@types/jest": "^29.5.2",
"@types/jsonld": "^1.5.13",
"@types/node": "^20.10.1",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "29.1.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "29.1.1",
"ts-node": "^10.9.1",
"tsc-alias": "^1.8.8",
"tsconfig-paths": "^3.14.2",
"typechain": "^8.1.1",
"typescript": "^4.3.5"
}
}