-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
63
64
65
66
67
68
69
70
{
"version": "2.0.1",
"license": "(Apache-2.0 OR MIT)",
"type": "module",
"exports": {
".": "./dist/index.js"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/*"
],
"engines": {
"node": ">=14.14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceramicnetwork/key-did-provider-ed25519.git"
},
"homepage": "https://github.com/ceramicnetwork/key-did-provider-ed25519",
"bugs": {
"url": "https://github.com/ceramicnetwork/key-did-provider-ed25519/issues"
},
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"build": "./node_modules/.bin/tsc --project tsconfig.build.json",
"prepublishOnly": "npm run build",
"prebuild": "npm run clean",
"lint": "./node_modules/.bin/eslint ./src --ext .js,.ts",
"clean": "rm -rf ./dist",
"size": "./node_modules/.bin/size-limit",
"analyze": "./node_modules/.bin/size-limit --why"
},
"name": "key-did-provider-ed25519",
"author": "Joel Thorstensson",
"module": "./dist/index.js",
"size-limit": [
{
"path": "dist/index.js",
"limit": "175 KB",
"webpack": true
}
],
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@size-limit/preset-small-lib": "^7.0.5",
"@size-limit/webpack": "^7.0.5",
"@size-limit/webpack-why": "^7.0.5",
"@types/jest": "^27.0.3",
"babel-jest": "^27.4.4",
"dids": "^3.0.0",
"eslint": "^8.4.1",
"eslint-config-3box": "^0.4.0",
"husky": "^7.0.4",
"jest": "^27.4.4",
"prettier": "^2.5.1",
"size-limit": "^7.0.5",
"typescript": "^4.5.4"
},
"dependencies": {
"@stablelib/ed25519": "^1.0.2",
"did-jwt": "^6.0.0",
"fast-json-stable-stringify": "^2.1.0",
"rpc-utils": "^0.6.2",
"uint8arrays": "^3.0.0"
}
}