-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 2.12 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
{
"name": "@aviarytech/crypto",
"version": "0.0.83",
"publishConfig": {
"registry": "https://npm.pkg.github.com/",
"access": "public"
},
"scripts": {
"dev": "vite dev",
"build": "vite build",
"package": "svelte-package",
"preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .",
"test": "vitest src/tests/lib/Ed25519VerificationKey2020",
"shipit": "npm run package && pushd package && npm publish && popd"
},
"type": "module",
"dependencies": {
"@noble/hashes": "^1.1.5",
"@noble/secp256k1": "^1.6.3",
"@scure/bip32": "^1.1.3",
"@stablelib/aes-kw": "^1.0.1",
"@stablelib/ed25519": "^1.0.2",
"@stablelib/hmac": "^1.0.1",
"@stablelib/pbkdf2": "^1.0.1",
"@stablelib/random": "^1.0.2",
"@stablelib/sha256": "^1.0.1",
"@stablelib/sha512": "^1.0.1",
"@stablelib/x25519": "^1.0.1",
"@stablelib/xchacha20poly1305": "^1.0.1",
"b58": "^4.0.3",
"buffer": "^6.0.3",
"jose": "^4.9.0",
"jsonld": "^5.2.0",
"micro-ed25519-hdkey": "^0.1.2"
},
"devDependencies": {
"@digitalbazaar/ed25519-signature-2020": "^5.0.0",
"@digitalbazaar/ed25519-verification-key-2020": "^4.1.0",
"@digitalbazaar/vc": "^5.0.0",
"@esbuild-plugins/node-globals-polyfill": "^0.2.3",
"@rollup/plugin-inject": "^5.0.3",
"@sveltejs/adapter-auto": "next",
"@sveltejs/kit": "next",
"@sveltejs/package": "^1.0.0-next.1",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"c8": "^7.11.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-svelte3": "^4.0.0",
"prettier": "^2.6.2",
"prettier-plugin-svelte": "^2.7.0",
"segfault-handler": "^1.3.0",
"svelte": "^3.49.0",
"svelte-check": "^2.7.1",
"svelte-preprocess": "^4.10.6",
"svelte2tsx": "^0.5.11",
"tiny-secp256k1": "^2.2.1",
"tslib": "^2.3.1",
"typescript": "^4.7.4",
"vite": "^4.0.3",
"vitest": "^0.27.1"
}
}