-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.67 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.67 KB
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
{
"name": "id-verifier",
"version": "0.1.0",
"description": "A JavaScript library that simplifies digital ID verification using the W3C Digital Credentials API",
"homepage": "https://github.com/universal-verify/id-verifier#readme",
"license": "MPL-2.0",
"author": "kalegd",
"type": "module",
"main": "build/id-verifier.min.js",
"funding": "https://github.com/sponsors/kalegd",
"scripts": {
"build": "rollup -c --bundleConfigAsCjs",
"lint": "eslint ./scripts --ext .js",
"lint-fix": "eslint ./scripts --ext .js --fix",
"start": "http-server -c-1 -p 8000",
"start-ssl": "http-server -S -C ssl/cert.pem -K ssl/key.pem -c-1 -p 8000",
"test": "node --test",
"build:css": "tailwindcss -i ./styles/input.css -o ./styles/main.css --minify",
"watch:css": "tailwindcss -i ./styles/input.css -o ./styles/main.css --watch"
},
"keywords": [
"digital-credentials",
"w3c",
"mdoc",
"mobile-id",
"verifiable-credentials",
"identity-verification",
"digital-id",
"id-verification",
"credential-management",
"browser-api"
],
"bugs": {
"url": "https://github.com/universal-verify/id-verifier/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/universal-verify/id-verifier.git"
},
"dependencies": {
"@hpke/core": "^1.7.3",
"asn1js": "^3.0.6",
"cbor2": "^2.0.1",
"pkijs": "^3.2.5",
"trusted-issuer-registry": "^0.1.0"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@stylistic/eslint-plugin": "^5.1.0",
"eslint": "^9.31.0",
"globals": "^16.3.0",
"http-server": "^14.1.1",
"rollup": "^4.41.0",
"tailwindcss": "^3.4.0"
}
}