-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.26 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.26 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
74
75
76
77
78
79
80
81
82
{
"name": "@lightninglabs/lnc-web",
"version": "0.3.5-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.1",
"ts-node": "10.7.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.47.0",
"vitest": "3.2.4",
"webpack": "5.94.0",
"webpack-cli": "5.1.4"
},
"dependencies": {
"@lightninglabs/lnc-core": "0.3.5-alpha",
"crypto-js": "4.2.0"
},
"browser": {
"fs": false,
"os": false,
"crypto": false
},
"files": [
"dist/**/*"
],
"directories": {
"lib": "lib",
"test": "test"
},
"license": "MIT"
}