-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 2.09 KB
/
package.json
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
{
"name": "@ln-markets/api",
"version": "3.0.1",
"description": "A set of wrappers to easily communicate with LN Markets API !",
"keywords": [
"ln-markets",
"api",
"trading",
"bitcoin"
],
"homepage": "https://github.com/ln-markets/api-js/#readme",
"bugs": {
"url": "https://github.com/ln-markets/api-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ln-markets/api-js.git"
},
"license": "MIT",
"author": "Victor Afanassieff <[email protected]>",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"format": "prettier --write --ignore-unknown '**'",
"lint": "eslint --color './**/*.ts'",
"prepare": "husky",
"prepublishOnly": "tsc --build tsconfig.build.json",
"release": "np --no-cleanup --no-tests --no-yarn",
"spell-check": "cspell --show-context --no-progress '**'",
"test": "vitest --run",
"type-check": "tsc --noEmit"
},
"dependencies": {
"undici": "6.20.0",
"ws": "8.18.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.12.0",
"@types/node": "22.7.5",
"@types/ws": "8.5.12",
"@vitest/eslint-plugin": "1.1.7",
"cspell": "8.14.4",
"eslint": "9.12.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsdoc": "50.3.1",
"eslint-plugin-prefer-arrow-functions": "3.4.1",
"eslint-plugin-unicorn": "56.0.0",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "15.11.0",
"husky": "9.1.6",
"knip": "5.33.3",
"lint-staged": "15.2.10",
"markdownlint-cli": "0.42.0",
"np": "10.0.7",
"prettier": "3.3.3",
"prettier-plugin-packagejson": "2.5.3",
"typescript": "5.6.3",
"typescript-eslint": "8.8.1",
"vitest": "2.1.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=22.9.0",
"pnpm": ">=9"
},
"publishConfig": {
"access": "public"
}
}