-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.11 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
{
"name": "credo-ts-media-sharing",
"version": "0.0.0.alpha-0",
"description": "Media sharing protocol implementation for credo-ts",
"author": "2060.io",
"homepage": "https://github.com/2060-io/credo-ts-media-sharing",
"license": "ISC",
"main": "build/index.js",
"types": "build/index.js",
"files": [
"build"
],
"scripts": {
"build": "yarn run clean && yarn run compile",
"clean": "rimraf -rf ./build",
"compile": "tsc -p tsconfig.build.json",
"prepublishOnly": "yarn run build",
"check-types": "tsc --noEmit -p tsconfig.build.json",
"check-format": "yarn prettier --check",
"prettier": "prettier --ignore-path .gitignore '**/*.+(js|json|ts|md|yml|yaml)'",
"release": "release-it",
"test": "jest"
},
"repository": {
"type": "git",
"url": "https://github.com/2060-io/credo-ts-media-sharing"
},
"bugs": {
"url": "https://github.com/2060-io/credo-ts-media-sharing/issues"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@credo-ts/askar": "^0.5.0-alpha.116",
"@credo-ts/node": "^0.5.0-alpha.116",
"@hyperledger/aries-askar-nodejs": "^0.2.0-dev.6",
"@types/jest": "^26.0.23",
"@types/node": "^20.11.16",
"@types/uuid": "^9.0.0",
"@typescript-eslint/eslint-plugin": "^5.48.1",
"@typescript-eslint/parser": "^5.48.1",
"jest": "^29.5.0",
"prettier": "^2.2.1",
"release-it": "^14.13.1",
"ts-jest": "^29.0.5",
"ts-node": "^10.8.1",
"tsconfig-paths": "^4.1.2",
"typescript": "~4.9.4"
},
"dependencies": {
"@credo-ts/core": "^0.5.0-alpha.116",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"reflect-metadata": "^0.1.13",
"rxjs": "^7.2.0",
"tsyringe": "^4.8.0",
"uuid": "^9.0.0"
},
"release-it": {
"github": {
"release": true
},
"npm": {
"skipChecks": true,
"ignoreVersion": true,
"tag": "latest"
},
"git": {
"push": false,
"commit": false,
"requireCommits": true,
"tagAnnotation": "${version}",
"requireBranch": "main"
}
}
}