generated from cheqd/.github
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.4 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@cheqd/did-registrar",
"version": "2.1.5",
"description": "Universal Registrar for cheqd DID method",
"homepage": "https://github.com/cheqd/did-registrar#readme",
"license": "Apache-2.0",
"author": "Cheqd Foundation Limited (https://github.com/cheqd)",
"repository": {
"type": "git",
"url": "git+https://github.com/cheqd/did-registrar.git"
},
"type": "module",
"bugs": {
"url": "https://github.com/cheqd/did-registrar/issues"
},
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./*": {
"types": "./dist/types/*.d.ts",
"import": "./dist/*.js",
"default": "./dist/*.js"
}
},
"scripts": {
"dev": "nodemon src/index.ts",
"start": "node dist/index.js",
"build": "tsc",
"format": "prettier --write '**/*.{js,ts,cjs,mjs,json}'",
"test": "npx playwright test -c playwright.config.ts"
},
"eslintConfig": {
"root": true,
"extends": [
"typescript",
"prettier"
]
},
"files": [
"dist",
"example.env",
"LICENSE",
"package.json",
"README.md"
],
"dependencies": {
"@cheqd/sdk": "^4.0.4",
"@cheqd/ts-proto": "^3.4.4",
"@cosmjs/proto-signing": "^0.32.4",
"dotenv": "^16.4.5",
"express": "^4.21.0",
"express-validator": "^7.2.0",
"helmet": "^7.1.0",
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"swagger-ui-express": "^5.0.1"
},
"devDependencies": {
"@playwright/test": "^1.47.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.3.5",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@stablelib/base64": "^2.0.0",
"@types/express": "^4.17.21",
"@types/helmet": "^4.0.0",
"@types/node": "^20.16.5",
"@types/node-fetch": "^2.6.11",
"@types/swagger-ui-express": "^4.1.6",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"base64url": "^3.0.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"esbuild": "^0.23.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-typescript": "^3.0.0",
"prettier": "^3.3.3",
"semantic-release": "^24.1.1",
"typescript": "^5.6.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"engines": {
"node": ">=20.0.0"
}
}