-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.87 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
{
"name": "obyte",
"version": "0.2.0",
"description": "A pure and powerful JavaScript Obyte library",
"homepage": "https://obytejs.com",
"browser": "dist/obyte.min.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/bonustrack/obyte.js.git"
},
"bugs": {
"url": "https://github.com/bonustrack/obyte.js/issues"
},
"main": "lib/index.js",
"module": "lib/esm/index.js",
"files": [
"dist",
"lib"
],
"scripts": {
"clean": "rimraf lib dist",
"prebuild": "npm run clean",
"build:cjs": "babel src --out-dir lib --copy-files --no-copy-ignored --ignore src/secp256k1-browser.js",
"build:esm": "babel src --out-dir lib/esm --config-file ./babel.esm.json --copy-files --no-copy-ignored --ignore src/secp256k1-browser.js",
"build": "npm run build:cjs && npm run build:esm && webpack && cp index.d.ts dist/index.d.ts",
"lint": "eslint 'src/**/*.js'",
"prettier": "prettier 'src/**/*.js' --list-different",
"test": "jest",
"test:coverage": "jest --coverage"
},
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.20.0",
"@noble/hashes": "^1.8.0",
"@scure/base": "^1.2.6",
"secp256k1": "^5.0.1",
"ws": "^8.21.0"
},
"devDependencies": {
"@babel/cli": "^7.20.0",
"@babel/core": "^7.20.0",
"@babel/plugin-transform-runtime": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@noble/curves": "^1.9.7",
"babel-jest": "^30.0.0",
"babel-loader": "^9.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.57.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-prettier": "^5.1.0",
"jest": "^30.0.0",
"prettier": "^3.2.0",
"rimraf": "^5.0.10",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.0"
},
"sideEffects": false
}