-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "@didtools/pkh-tezos",
"version": "0.3.0",
"license": "(Apache-2.0 OR MIT)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.14"
},
"sideEffects": false,
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "pnpm run build:clean && pnpm run build:types && pnpm run build:js",
"lint": "eslint src --fix",
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"test:ci": "pnpm run test --ci --coverage",
"prepare": "pnpm run build",
"prepublishOnly": "package-check",
"size": "./node_modules/.bin/size-limit",
"analyze": "./node_modules/.bin/size-limit --why"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/js-did.git"
},
"keywords": [
"DID",
"identity",
"did-provider",
"self-sovereign"
],
"bugs": {
"url": "https://github.com/ceramicnetwork/js-did/issues"
},
"homepage": "https://github.com/ceramicnetwork/js-did#readme",
"devDependencies": {
"@taquito/signer": "^17.4.0",
"@taquito/taquito": "^17.4.0",
"@taquito/utils": "^17.4.0",
"typescript": "^5.3.2"
},
"dependencies": {
"@didtools/cacao": "workspace:^3.0.0",
"@noble/curves": "^1.2.0",
"@noble/hashes": "^1.3.2",
"@stablelib/random": "^1.0.2",
"caip": "^1.1.0",
"uint8arrays": "^5.0.1"
}
}