-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.26 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.26 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
79
80
81
82
83
84
85
86
{
"type": "module",
"license": "Apache-2.0",
"name": "@sovereignbase/cryptographic-continuity",
"version": "0.0.0",
"description": "Cryptographic continuity attesttation scheme.",
"keywords": [
"typescript",
"sovereignbase"
],
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"engines": {
"node": ">=20"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"format": "prettier . --write",
"build": "tsup",
"test": "npm run build && node test/run-coverage.mjs && node test/e2e/run.mjs",
"bench": "npm run build && node benchmark/bench.js",
"prepare": "husky",
"prepublishOnly": "npm run test && npm run bench"
},
"c8": {
"all": true,
"include": [
"dist/**/*.js"
],
"exclude": [
"dist/**/*.d.ts",
"test/**",
"benchmark/**",
"playwright.config.ts"
]
},
"devDependencies": {
"@commitlint/cli": "^21.0.1",
"@commitlint/config-conventional": "^21.0.1",
"@playwright/test": "^1.60.0",
"@types/node": "^25.8.0",
"c8": "^11.0.0",
"edge-runtime": "^4.0.1",
"fast-glob": "^3.3.3",
"husky": "^9.1.7",
"playwright": "^1.60.0",
"prettier": "^3.8.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"wrangler": "4.86.0"
},
"dependencies": {
"@sovereignbase/bytecodec": "^1.7.0",
"@sovereignbase/convergent-replicated-list": "^1.2.0",
"@sovereignbase/convergent-replicated-map": "^1.0.3",
"@sovereignbase/convergent-replicated-struct": "^1.2.3",
"@sovereignbase/cryptosuite": "^2.2.2",
"@sovereignbase/frontier-store": "^0.0.0",
"@sovereignbase/utils": "^1.2.2",
"json-canonicalize": "^2.0.0",
"jsonld": "^9.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sovereignbase/cryptographic-continuity.git"
},
"bugs": {
"url": "https://github.com/sovereignbase/cryptographic-continuity/issues"
},
"homepage": "https://github.com/sovereignbase/cryptographic-continuity#readme"
}