-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
73 lines (73 loc) · 1.85 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
{
"name": "@affinidi-tdk/iota-core",
"version": "1.21.0",
"description": "Affinidi Iota Framework core library primarily used in the backend",
"author": "Affinidi",
"repository": {
"type": "git",
"url": "https://github.com/affinidi/affinidi-tdk"
},
"keywords": [
"affinidi-tdk",
"affinidi-iota-framework",
"identity",
"holistic",
"network",
"trust"
],
"license": "Apache-2.0",
"main": "index.js",
"typings": "index.d.ts",
"sideEffects": false,
"homepage": "https://github.com/affinidi/affinidi-tdk#readme",
"jsii": {
"outdir": "dist",
"versionFormat": "short",
"targets": {
"python": {
"distName": "affinidi_tdk_iota_core",
"module": "affinidi_tdk_iota_core"
}
}
},
"scripts": {
"build": "jsii -vvv",
"build:watch": "jsii -w",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"package": "jsii-pacmak -vvv",
"publish-npm": "publib-npm",
"publish-pypi": "twine upload --verbose --skip-existing dist/python/*"
},
"dependencies": {
"@affinidi-tdk/common": "^1.21.0",
"@affinidi-tdk/iota-client": "^1.14.0",
"@aws-sdk/client-cognito-identity": "^3.590.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jsii": "^5.3.25",
"jsii-pacmak": "^1.103.1",
"typescript": "^5.2.2"
},
"stability": "stable",
"types": "index.d.ts",
"typesVersions": {
"<=3.9": {
"*": [
".types-compat/ts3.9/*",
".types-compat/ts3.9/*/index.d.ts"
]
}
},
"bundleDependencies": [
"@affinidi-tdk/common",
"@affinidi-tdk/iota-client",
"@aws-sdk/client-cognito-identity"
]
}