-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
115 lines (115 loc) · 2.34 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "identinet-plugin",
"version": "0.3.1",
"description": "Displays and verifies decentralized identity information of websites",
"type": "module",
"scripts":
{
"dev": "NODE_ENV=development vinxi dev",
"build": "vinxi build",
"start": "vinxi start",
"test": "vitest --dir ."
},
"repository":
{
"type": "git",
"url": "https://github.com/identinet/identinet-plugin"
},
"keywords":
[
"firefox",
"chrome",
"extension",
"ssi",
"did",
"verifiable",
"credential",
"credentials",
"presentation",
"presentations",
"identity"
],
"author": "Jan Christoph Ebersbach",
"license": "AGPL-3.0",
"devDependencies":
{
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.10.0",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-terser": "^7.0.2",
"vinxi": "^0.2.1",
"vite-plugin-node-polyfills": "^0.21.0",
"vite-plugin-solid-svg": "^0.8.0",
"vitest": "^1.2.2",
"web-ext": "^7.11.0"
},
"browser": true,
"dependencies":
{
"@digitalbazaar/ed25519-signature-2018": "^4.0.0",
"@digitalbazaar/ed25519-signature-2020": "^5.2.0",
"@digitalbazaar/vc": "^6.2.0",
"@iconify-json/mdi": "^1.1.64",
"@solidjs/meta": "^0.29.3",
"@solidjs/router": "^0.12.0",
"@solidjs/start": "^0.5.4",
"@unocss/preset-wind": "^0.58.5",
"@unocss/transformer-directives": "^0.58.5",
"base58-universal": "^2.0.0",
"base64url-universal": "^2.0.0",
"daisyui": "^3.9.4",
"fluture": "^14.0.0",
"fluture-sanctuary-types": "^7.1.0",
"jsonld-signatures": "^11.2.1",
"sanctuary": "^3.1.0",
"sanctuary-def": "^0.22.0",
"solid-js": "^1.8.14",
"unocss": "^0.58.5",
"unocss-preset-daisy": "^7.0.0"
},
"engines":
{
"node": ">=18.0"
},
"eslintConfig":
{
"env":
{
"browser": true,
"es2020": true
},
"globals":
{
"ENV": true
},
"extends": "eslint:recommended",
"parserOptions":
{
"sourceType": "module"
},
"rules":
{
"indent":
[
"error",
2
],
"linebreak-style":
[
"error",
"unix"
],
"quotes":
[
"error",
"single"
],
"semi":
[
"error",
"always"
]
}
}
}