-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
62 lines (62 loc) · 1.31 KB
/
package.json
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
{
"name": "@3id/common",
"version": "0.4.1",
"author": "3Box Labs",
"license": "(Apache-2.0 OR MIT)",
"homepage": "https://github.com/ceramicstudio/js-3id#readme",
"keywords": [
"3id",
"common"
],
"repository": {
"type": "git",
"url": "https://github.com/ceramicstudio/3id-connect",
"directory": "packages/common"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.14"
},
"sideEffects": false,
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "yarn build:clean && yarn build:types && yarn build:js",
"lint": "eslint src --fix",
"prepare": "yarn build",
"prepublishOnly": "package-check"
},
"dependencies": {
"errors-utils": "^0.2.0",
"uint8arrays": "^3.0.0"
},
"devDependencies": {
"did-jwt": "^6.0.0",
"rpc-utils": "^0.6.1"
},
"jest": {
"extensionsToTreatAsEsm": [
".ts"
],
"moduleNameMapper": {
"^(\\.{1,2}/.*)\\.js$": "$1"
},
"transform": {
"^.+\\.(t|j)s$": [
"@swc/jest",
{
"root": "../.."
}
]
}
}
}