-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.17 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.17 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
87
88
89
90
91
92
93
94
95
96
{
"name": "@fission-codes/ucan",
"type": "module",
"version": "0.3.0",
"description": "UCAN (User Controlled Authorization Networks) is a decentralized authorization protocol for the web.",
"author": "Hugo Dias <hugomrdias@gmail.com> (hugodias.me)",
"license": "MIT",
"homepage": "https://github.com/fission-codes/stack/tree/main/packages/ucan",
"repository": {
"url": "fission-codes/stack",
"directory": "packages/ucan"
},
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./src/index.js"
},
"./bearer": {
"types": "./dist/src/bearer.d.ts",
"default": "./src/bearer.js"
},
"./agent": {
"types": "./dist/src/agent.d.ts",
"default": "./src/agent.js"
},
"./types": {
"types": "./dist/src/types.d.ts"
}
},
"main": "src/index.js",
"types": "dist/src/index.d.ts",
"typesVersions": {
"*": {
".": [
"dist/src/index"
],
"agent": [
"dist/src/agent"
],
"bearer": [
"dist/src/bearer"
],
"./types": [
"dist/src/types"
]
}
},
"files": [
"src",
"dist/src/*.d.ts",
"dist/src/*.d.ts.map"
],
"scripts": {
"lint": "tsc --build && eslint . && prettier --check '**/*.{js,ts,yml,json}' --ignore-path ../../.gitignore",
"build": "tsc --build",
"test": "pnpm run test:node && pnpm run test:browser",
"test:node": "playwright-test 'test/**/!(*.browser).test.js' --mode node",
"test:browser": "playwright-test 'test/**/!(*.node).test.js'"
},
"dependencies": {
"@noble/ed25519": "^2.0.0",
"@scure/bip39": "^1.2.2",
"iso-base": "^4.0.0",
"iso-did": "^1.6.0",
"iso-kv": "^3.0.2",
"iso-signatures": "^0.3.2",
"multiformats": "^13.1.0"
},
"devDependencies": {
"@types/node": "^20.11.30",
"playwright-test": "^14.1.1",
"type-fest": "^4.18.3"
},
"publishConfig": {
"provenance": true
},
"eslintConfig": {
"extends": [
"@fission-codes"
],
"env": {
"mocha": true
},
"ignorePatterns": [
"dist"
]
},
"depcheck": {
"specials": [
"bin"
],
"ignores": [
"@types/*"
]
}
}