-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 2.63 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 2.63 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@theqrl/wallet.js",
"version": "6.2.3",
"description": "Quantum-resistant wallet library for The QRL using ML-DSA-87 (FIPS 204)",
"type": "module",
"main": "dist/cjs/wallet.js",
"module": "dist/mjs/wallet.js",
"types": "types/index.d.ts",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./dist/mjs/wallet.js",
"require": "./dist/cjs/wallet.js"
}
},
"scripts": {
"build": "rollup -c && ./fixup && tsc",
"prepublishOnly": "npm run build",
"test": "mocha",
"test:browser": "playwright test",
"typecheck": "tsc -p tsconfig.typecheck.json",
"lint-check": "eslint .",
"lint": "eslint --fix .",
"report-coverage": "c8 --reporter=text-lcov npm run test > coverage.lcov",
"coverage": "c8 npm run test"
},
"author": "QRL contributors <info@theqrl.org> (https://theqrl.org)",
"license": "MIT",
"engines": {
"node": ">=20.19"
},
"repository": {
"type": "git",
"url": "https://github.com/theQRL/wallet.js"
},
"dependencies": {
"@noble/hashes": "2.2.0",
"@theqrl/mldsa87": "2.1.3"
},
"directories": {
"lib": "src",
"test": "test"
},
"c8": {
"include": [
"src/**/*.js"
],
"exclude": [
"scripts/**",
"dist/**",
"test/**",
"browser-tests/**"
],
"all": true,
"src": [
"src"
],
"check-coverage": true,
"statements": 100,
"branches": 100,
"functions": 100,
"lines": 100
},
"files": [
"dist",
"src",
"types"
],
"devDependencies": {
"@eslint/js": "10.0.1",
"@playwright/test": "1.60.0",
"@rollup/plugin-node-resolve": "16.0.3",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "7.1.0",
"@semantic-release/git": "10.0.1",
"@types/node": "25.7.0",
"c8": "11.0.0",
"chai": "6.2.2",
"conventional-changelog-conventionalcommits": "9.3.1",
"eslint": "10.3.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import-x": "4.16.2",
"eslint-plugin-prettier": "5.5.5",
"fast-check": "4.8.0",
"globals": "17.6.0",
"mocha": "11.7.5",
"playwright": "1.60.0",
"prettier": "3.8.3",
"rollup": "4.60.3",
"semantic-release": "25.0.5",
"typescript": "6.0.3"
},
"overrides": {
"eslint-plugin-import-x": {
"eslint": "$eslint"
},
"serialize-javascript": "7.0.5",
"minimatch": "10.2.4",
"glob": "13.0.6",
"tar": "7.5.11",
"diff": "8.0.3",
"picomatch": "4.0.4",
"brace-expansion": "5.0.6",
"npm": {
".": "11.16.0",
"minimatch": "10.2.4",
"picomatch": "4.0.4",
"brace-expansion": "5.0.6"
}
}
}