-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
50 lines (50 loc) · 1.28 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
{
"name": "pkh-did-resolver",
"version": "2.0.0",
"description": "did:pkh method resolver",
"keywords": [
"ceramic",
"did:pkh",
"did",
"pkh"
],
"author": "Joel Thorstensson <[email protected]>",
"homepage": "https://3boxlabs.com",
"license": "(Apache-2.0 OR MIT)",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"files": [
"dist"
],
"engines": {
"node": ">=14.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/js-did.git"
},
"sideEffects": false,
"scripts": {
"build:clean": "del dist",
"build:js": "swc src -d ./dist --config-file ../../.swcrc",
"build:types": "tsc --emitDeclarationOnly --skipLibCheck",
"build": "pnpm run build:clean && pnpm run build:types && pnpm run build:js",
"lint": "eslint src --fix",
"test": "node --experimental-vm-modules ../../node_modules/jest/bin/jest.js",
"test:ci": "pnpm run test --ci --coverage",
"prepare": "pnpm run build",
"prepublishOnly": "package-check",
"size": "./node_modules/.bin/size-limit",
"analyze": "./node_modules/.bin/size-limit --why"
},
"dependencies": {
"caip": "~1.1.0"
},
"devDependencies": {
"did-resolver": "^4.1.0"
}
}