-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 2.17 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 2.17 KB
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
{
"name": "@tanglelabs/ssimon",
"version": "1.0.1",
"description": "SSIMON is an open, interoperable, and convenient software to manage DIDs and credentials",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Tangle-Labs/identity-manager",
"author": "Merul <merul@tanglelabs.io>",
"license": "GPL-2.0",
"type": "commonjs",
"dependencies": {
"@sd-jwt/crypto-nodejs": "^0.9.1",
"@sd-jwt/sd-jwt-vc": "^0.9.1",
"@sd-jwt/types": "^0.9.1",
"@sphereon/did-resolver-jwk": "0.10.2-unstable.5",
"crypto-js": "^4.2.0",
"did-jwt": "^8.0.4",
"did-jwt-vc": "^4.0.4",
"did-resolver": "^4.1.0",
"jsonschema": "^1.4.1",
"key-did-resolver": "^4.0.0"
},
"scripts": {
"build": "tsc --project tsconfig.json && npm run copy-dts",
"copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest --coverage",
"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/tests/manual-test.ts"
},
"devDependencies": {
"@tanglelabs/jwk-identity-adapter": "^0.2.0",
"@tanglelabs/typeorm-storage-driver": "^0.1.3",
"@types/crypto-js": "^4.2.2",
"@types/dotenv": "^8.2.3",
"@types/jest": "^29.5.14",
"@types/jsdoc-to-markdown": "^7.0.6",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.1",
"@typescript-eslint/parser": "^8.18.1",
"@vitest/coverage-v8": "^3.0.6",
"copyfiles": "^2.4.1",
"dotenv": "^16.4.7",
"eslint": "^9.17.0",
"fix-esm-import-path": "^1.10.1",
"jest": "^29.7.0",
"jest-esm-transformer": "^1.0.0",
"jsdoc-to-markdown": "^9.1.1",
"prettier": "^3.4.2",
"semantic-release": "^24.2.0",
"ts-jest": "29.2.5",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.7.2",
"vitest": "^3.0.6",
"web-did-resolver": "^2.0.27"
}
}