-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.3 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.3 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
{
"name": "dkg.js",
"version": "8.1.1-rc.2",
"description": "Javascript library for interaction with the OriginTrail Decentralized Knowledge Graph",
"main": "index.js",
"exports": {
".": {
"import": "./index.js",
"require": "./index.cjs"
},
"./constants": {
"import": "./constants/index.js",
"require": "./constants/index.cjs"
}
},
"type": "module",
"scripts": {
"compile-contracts": "cd ./node_modules/dkg-evm-module && npm run compile",
"build": "npm run cjs-compat && webpack --config webpack.config.cjs",
"watch": "npm run cjs-compat && webpack --config webpack.config.cjs --watch --progress",
"lint": "eslint .",
"cjs:main": "npx rollup index.js --file index.cjs --format cjs",
"cjs:constants": "npx rollup constants/index.js --file constants/index.cjs --format cjs",
"cjs-compat": "npm run cjs:main && npm run cjs:constants",
"postinstall": "npm run cjs-compat"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OriginTrail/dkg.js.git"
},
"keywords": [
"origintrail",
"knowledge",
"graph",
"dkg",
"blockchain",
"ot-node",
"v6"
],
"author": "Trace Labs Group",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/OriginTrail/dkg.js/issues"
},
"homepage": "https://github.com/OriginTrail/dkg.js/tree/main#readme",
"dependencies": {
"assertion-tools": "8.0.6",
"axios": "^0.27.2",
"dkg-evm-module": "8.0.4",
"dotenv": "^16.4.7",
"ethers": "^6.1.0",
"jsonld": "^8.1.0",
"web3": "^1.7.3"
},
"devDependencies": {
"assert": "^2.0.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.5.0",
"https-browserify": "^1.0.0",
"os-browserify": "^0.3.0",
"prettier": "^2.7.1",
"rollup": "^4.28.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"terser-webpack-plugin": "^5.3.6",
"url": "^0.11.1",
"webpack": "^5.75.0",
"webpack-cli": "^4.9.2"
}
}