-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "@decentralized-identity/ion-tools",
"version": "1.1.4",
"description": "ION Tools - utilities to make working with the ION network and using ION DIDs easy peasy lemon squeezy",
"repository": {
"type": "git",
"url": "git+https://github.com/decentralized-identity/ion-tools.git"
},
"license": "Apache-2.0",
"type": "module",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/esm/index.js"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:browser",
"build:cjs": "node ./build-cjs.js && echo {\"type\": \"commonjs\"} > ./dist/cjs/package.json",
"build:esm": "mkdirp ./dist/esm && cp -R ./src/* ./dist/esm/",
"build:browser": "node ./build-browser-bundles.js",
"publish": "npm run build && npm publish",
"lint": "eslint . --max-warnings 0",
"lint:fix": "eslint . --fix",
"test": "mocha \"tests/*.spec.js\""
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.5",
"@babel/plugin-syntax-import-assertions": "^7.22.5",
"esbuild": "0.18.7",
"eslint": "^8.43.0",
"mkdirp": "2.1.3",
"mocha": "^10.2.0",
"rimraf": "5.0.1"
},
"dependencies": {
"@decentralized-identity/ion-pow-sdk": "^1.0.17",
"@decentralized-identity/ion-sdk": "^1.0.1",
"@noble/ed25519": "^2.0.0",
"@noble/secp256k1": "^2.0.0",
"chai": "^4.3.7",
"cross-fetch": "4.0.0",
"multiformats": "^12.0.1"
},
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/decentralized-identity/ion-tools/issues"
},
"homepage": "https://github.com/decentralized-identity/ion-tools#readme",
"keywords": [
"ION",
"decentralized",
"identity"
],
"author": "Decentralized Identity Foundation",
"engines": {
"node": ">= 18"
},
"engineStrict": true
}