forked from kaspa-kcoin/kaspa-web3.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.56 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.56 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
{
"name": "@kcoin/kaspa-web3.js",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/kaspa-kcoin/kaspa-web3.js.git"
},
"version": "1.1.4",
"type": "module",
"files": [
"dist"
],
"main": "./dist/kaspa-web3.umd.cjs",
"module": "./dist/kaspa-web3.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/kaspa-web3.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/kaspa-web3.umd.cjs"
}
}
},
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "vite build",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"format": "prettier --write .",
"version": "auto-changelog -p"
},
"dependencies": {
"@noble/curves": "^1.7.0",
"@noble/hashes": "^1.6.1",
"@noble/secp256k1": "^2.1.0",
"buffer": "^6.0.3",
"toml": "^3.0.0",
"websocket-heartbeat-js": "^1.1.3"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@rollup/plugin-typescript": "^12.1.2",
"@types/ws": "8.18.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"@vitejs/plugin-vue": "^5.2.1",
"auto-changelog": "^2.5.0",
"eslint": "^9.16.0",
"globals": "^16.0.0",
"prettier": "3.5.3",
"tslib": "^2.8.1",
"typescript": "~5.8.0",
"typescript-eslint": "^8.16.0",
"vite": "^6.0.0",
"vitest": "^3.0.0",
"ws": "8.18.1"
}
}