-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 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
54
{
"name": "@tanglelabs/iota-identity-adapter",
"version": "0.4.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": "https://github.com/Tangle-Labs/iota-identity-adapter",
"author": "Merul <[email protected]>",
"license": "GPL-2.0",
"scripts": {
"build": "tsc; fix-esm-import-path ./dist;",
"test": "jest",
"coverage": "jest --coverage",
"lint": "eslint . --cache",
"format": "prettier -w \"**/*.{ts,js,json,scss,css}\"",
"format-check": "prettier -c \"src/**{ts,js,json,scss,css}\"",
"semantic-release": "semantic-release --branches main",
"dev": "nodemon --watch './**/*.ts' --exec 'node --experimental-specifier-resolution=node --trace-warnings --loader ts-node/esm' src/test.ts"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.19.68",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"jsdoc-to-markdown": "^7.1.1",
"nodemon": "^3.1.9",
"prettier": "^2.8.8",
"semantic-release": "^19.0.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@iota/identity-wasm": "^1.4.0",
"@iota/sdk-wasm": "1.1.3",
"@noble/ed25519": "^2.1.0",
"@tanglelabs/ssimon": "0.8.4",
"did-jwt": "^7.4.7",
"did-jwt-vc": "^3.2.15",
"did-resolver": "^4.1.0",
"fix-esm-import-path": "^1.10.1",
"nanoid": "^5.0.9",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0"
},
"pnpm": {
"patchedDependencies": {
"@iota/sdk-wasm": "patches/@iota__sdk-wasm.patch"
}
}
}