-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.76 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.76 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@4sure-tech/vc-bitstring-status-lists",
"version": "0.1.0",
"description": "TypeScript library for W3C Bitstring Status List v1.0 specification - privacy-preserving credential status management",
"source": "src/index.ts",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsup",
"test:ci": "vitest"
},
"keywords": [
"verifiable-credentials",
"bitstring",
"status-list",
"w3c",
"revocation",
"suspension",
"typescript"
],
"author": "4Sure Technology Solutions",
"contributors": [
{
"name": "Sander Postma",
"email": "info@4sure.tech",
"url": "https://github.com/sanderPostma"
}
],
"repository": {
"type": "git",
"url": "https://github.com/4sure-tech/vc-bitstring-status-lists.git"
},
"bugs": {
"url": "https://github.com/4sure-tech/vc-bitstring-status-lists/issues"
},
"homepage": "https://4sure.tech",
"license": "Apache-2.0",
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=18"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"dependencies": {
"base64url-universal": "^2.0.0",
"pako": "^2.1.0",
"uint8arrays": "^5.1.0"
},
"devDependencies": {
"@types/node": "^24.0.12",
"@types/pako": "^2.0.3",
"tsup": "^8.5.0",
"turbo": "^2.5.4",
"typescript": "^5.8.3",
"vite": "^7.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.2.4"
},
"publishConfig": {
"access": "public"
}
}