-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 1003 Bytes
/
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
{
"name": "@animo-id/afj-universal-resolver",
"version": "0.1.0",
"description": "AFJ Universal DID Resolver integration",
"author": "Animo Solutions",
"main": "build/index",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"license": "APACHE-2.0",
"files": [
"build"
],
"scripts": {
"build": "tsc",
"test": "node --require ts-node/register --test ./tests/*.test.ts",
"prettier": "prettier --ignore-path .gitignore .",
"check-format": "pnpm prettier --list-different",
"check-types": "pnpm build --noEmit",
"format": "pnpm prettier --write",
"release": "release-it"
},
"devDependencies": {
"@aries-framework/askar": "^0.4.2",
"@aries-framework/core": "^0.4.2",
"@aries-framework/node": "^0.4.2",
"@hyperledger/aries-askar-nodejs": "^0.1.0",
"@types/node": "^20.10.0",
"prettier": "^3.1.0",
"release-it": "^17.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
}
}