-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
96 lines (96 loc) · 2.6 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
96
{
"name": "@kiltprotocol/kilt-extension-api",
"version": "0.1.0",
"main": "./index.js",
"types": "./index.d.ts",
"type": "commonjs",
"exports": {
".": {
"import": "./esm/index.js",
"require": "./index.js",
"default": "./index.js"
},
"./wellKnownDidConfiguration": {
"import": "./esm/wellKnownDidConfiguration/index.js",
"require": "./wellKnownDidConfiguration/index.js",
"default": "./wellKnownDidConfiguration/index.js"
},
"./types": {
"import": "./esm/types/index.js",
"require": "./types/index.js",
"default": "./types/index.js"
},
"./messaging": {
"import": "./esm/messaging/index.js",
"require": "./messaging/index.js",
"default": "./messaging/index.js"
},
"./quote": {
"import": "./esm/quote/index.js",
"require": "./quote/index.js",
"default": "./quote/index.js"
},
"./utils": {
"import": "./esm/utils/index.js",
"require": "./utils/index.js",
"default": "./utils/index.js"
}
},
"files": [
"LICENSE",
"README.md",
"package.json",
"esm",
"messaging",
"wellKnownDidConfiguration",
"quote",
"index.js",
"index.d.ts",
"getExtension",
"cli",
"utils",
"types"
],
"author": "KILT <[email protected]>",
"license": "BSD-4-Clause",
"scripts": {
"lint": "eslint --ext .ts ./src",
"build": "yarn build:cjs && yarn build:esm",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json && echo '{\"type\": \"module\"}' > esm/package.json",
"clean": "exec git clean -xf -e 'node_modules' '*'",
"test": "jest test --no-cache --forceExit",
"prepack": "yarn build"
},
"dependencies": {
"@kiltprotocol/sdk-js": "^0.35.0",
"@kiltprotocol/types": "^0.35.0",
"@kiltprotocol/vc-export": "^0.35.0",
"@polkadot/keyring": "^12.3.2",
"@polkadot/util": "^12.3.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@polkadot/util-crypto": "^12.3.2",
"@types/jest": "^28.0.0",
"@types/node": "^18.8.2",
"@types/react": "^18.0.21",
"@types/valid-url": "^1.0.3",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"eslint": ">=8.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-license-header": "^0.6.0",
"jest": "^28.0.0",
"prettier": "^3.0.1",
"react": "^18.2.0",
"testcontainers": "^9.5.0",
"ts-jest": "^28.0.8",
"ts-jest-resolver": "^2.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"bin": {
"createDidConfig": "./cli/createDidConfig.js"
}
}