Add bisqJS and liquidJS npm modules.
This commit is contained in:
6
npm-liquid-js/.gitignore
vendored
Normal file
6
npm-liquid-js/.gitignore
vendored
Normal file
@@ -0,0 +1,6 @@
|
||||
/node_modules
|
||||
/lib
|
||||
/dist/*
|
||||
!.gitkeep
|
||||
|
||||
yarn-error.log
|
||||
1
npm-liquid-js/README.md
Normal file
1
npm-liquid-js/README.md
Normal file
@@ -0,0 +1 @@
|
||||
# Liquid JS API
|
||||
56
npm-liquid-js/package.json
Normal file
56
npm-liquid-js/package.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"name": "@mempool/liquid.js",
|
||||
"version": "2.2.0",
|
||||
"description": "NPM package module for Liquid APIs.",
|
||||
"main": "../lib/index-liquid.js",
|
||||
"keywords": [
|
||||
"axios",
|
||||
"bitcoin",
|
||||
"liquid",
|
||||
"blockchain",
|
||||
"html",
|
||||
"mempool.space",
|
||||
"mempool.js",
|
||||
"mempool",
|
||||
"websocket",
|
||||
"nodejs",
|
||||
"typescript"
|
||||
],
|
||||
"author": "Miguel Medeiros <contact@miguelmedeiros.com.br> (miguelmedeiros.com.br)",
|
||||
"url": "https://liquid.network/",
|
||||
"private": false,
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git://github.com/mempool/mempool.js.git"
|
||||
},
|
||||
"types": "../lib/index-liquid.d.ts",
|
||||
"scripts": {
|
||||
"start": "ts-node ../src/index-liquid.ts",
|
||||
"dev": "nodemon ../src/index-liquid.ts",
|
||||
"build": "tsc",
|
||||
"export-js": "tsc | browserify ../lib/index-liquid.js --standalone liquidJS > ../dist/liquid.js | browserify -p tinyify ../lib/index-liquid.js --standalone liquidJS > ../dist/liquid.min.js",
|
||||
"prepare": "npm run build",
|
||||
"postversion": "git push && git push --tags"
|
||||
},
|
||||
"files": [
|
||||
"../lib/**/*"
|
||||
],
|
||||
"dependencies": {
|
||||
"axios": "^0.21.1",
|
||||
"ws": "^7.4.3"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^14.14.25",
|
||||
"@types/websocket": "^1.0.2",
|
||||
"@types/ws": "^7.4.1",
|
||||
"@typescript-eslint/eslint-plugin": "^4.14.2",
|
||||
"@typescript-eslint/parser": "^4.14.2",
|
||||
"browserify": "^17.0.0",
|
||||
"eslint": "^7.19.0",
|
||||
"nodemon": "^2.0.7",
|
||||
"tinyify": "^3.0.0",
|
||||
"ts-node": "^9.1.1",
|
||||
"typescript": "^4.1.3"
|
||||
},
|
||||
"license": "MIT"
|
||||
}
|
||||
Reference in New Issue
Block a user