-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.96 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
{
"name": "@quillai-network/mandates-core",
"version": "0.1.5",
"description": "Core SDK for Mandates, create, canonicalize (JCS), hash, sign (EIP-191), and verify immutable mandate documents with CAIP-10 identities.",
"type": "module",
"license": "MIT",
"author": "QuillAINetwork",
"contributors": [
{
"name": "Akshat Mishra",
"url": "https://github.com/Akshat-Mishra101"
},
{
"name": "Akshay Dev H",
"url": "https://github.com/akshaydevh"
}
],
"repository": {
"type": "git",
"url": "https://github.com/quillai-network/mandates-core.git"
},
"homepage": "https://github.com/quillai-network/mandates-core#readme",
"bugs": {
"url": "https://github.com/quillai-network/mandates-core/issues"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./browser": {
"types": "./dist/index.browser.d.ts",
"import": "./dist/index.browser.js"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"build": "tsup",
"typecheck": "tsc -p tsconfig.json --noEmit",
"dev": "vitest watch",
"test": "vitest run",
"clean": "rimraf dist",
"prepublishOnly": "npm run clean && npm run build && npm run test"
},
"dependencies": {
"canonicalize": "^2.0.0",
"ethers": "^6.13.0",
"ulid": "^2.4.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"rimraf": "^6.0.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.18"
}
}