@lightninglabs/lnc-web
Version:
Lightning Node Connect npm module for web
83 lines (82 loc) • 2.32 kB
JSON
{
"name": "@lightninglabs/lnc-web",
"version": "0.4.0-alpha",
"description": "Lightning Node Connect npm module for web",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "NODE_ENV=production webpack",
"dev": "webpack --watch --stats-error-details",
"test": "vitest run",
"test:ui": "vitest --ui",
"test:watch": "vitest --watch",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"prettier": "prettier --check '**/*.ts*' '**/*.js*'",
"prettier-write": "prettier --check --write '**/*.ts*' '**/*.js*'",
"lint": "eslint .",
"typecheck": "tsc --noEmit --project tsconfig.typecheck.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run prettier && git add -A lib",
"postversion": "git push && git push --tags",
"ai:sync": "ai-docs-sync sync",
"ai:check": "ai-docs-sync check",
"ai:clean": "ai-docs-sync clean"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lightninglabs/lnc-web.git"
},
"keywords": [
"lightning",
"lnd",
"lightning-node-connect",
"lnc"
],
"author": "Evan Kaloudis",
"bugs": {
"url": "https://github.com/lightninglabs/lnc-web/issues"
},
"homepage": "https://github.com/lightninglabs/lnc-web#readme",
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/js": "^9.39.1",
"@lightninglabs/ai-docs-sync": "^0.1.0",
"@types/crypto-js": "4.1.1",
"@types/debug": "4.1.7",
"@types/node": "17.0.16",
"@vitest/coverage-v8": "3.2.4",
"@vitest/ui": "3.2.4",
"clean-webpack-plugin": "4.0.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"node-polyfill-webpack-plugin": "1.1.4",
"prettier": "2.6.0",
"ts-loader": "9.5.7",
"ts-node": "10.9.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vitest": "3.2.4",
"webpack": "5.105.4",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@lightninglabs/lnc-core": "0.4.0-alpha",
"crypto-js": "4.2.0"
},
"browser": {
"fs": false,
"os": false,
"crypto": false
},
"files": [
"dist/**/*"
],
"directories": {
"lib": "lib",
"test": "test"
},
"license": "MIT"
}