-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.82 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.82 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
{
"name": "trac-wallet",
"version": "2.1.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./constants": {
"types": "./dist/constants.d.ts",
"import": "./dist/constants.js"
},
"./package.json": "./package.json"
},
"type": "module",
"pear": {
"name": "trac-wallet",
"type": "terminal"
},
"scripts": {
"clean:dist": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"clean:test": "node -e \"require('node:fs').rmSync('.test-build', { recursive: true, force: true })\"",
"clean": "npm run clean:dist && npm run clean:test",
"build": "npm run clean:dist && tsc -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test:compile": "npm run clean:test && tsc -p tsconfig.test.json",
"test:node": "node --loader ts-node/esm test/all.test.ts",
"test:watch": "node --watch --loader ts-node/esm test/all.test.ts",
"test:node:compiled": "brittle-node -c -t 180000 .test-build/test/all.test.js",
"test:bare": "npm run test:compile && npm run test:bare:compiled",
"test:bare:compiled": "brittle-bare -c -t 180000 .test-build/test/all.test.js",
"test:compiled": "npm run test:compile && npm run test:node:compiled && npm run test:bare:compiled",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test:ci": "npm run test:compiled",
"coverage": "c8 --all --src src --exclude 'test/**' --exclude '.test-build/**' --exclude 'backup/**' --exclude 'src/constants.ts' --exclude 'src/types/**' --reporter=text --reporter=json-summary --reporter=lcov --reporter=html node --loader ts-node/esm test/all.test.ts",
"coverage:report": "c8 report --reporter=text --reporter=lcov --reporter=html",
"test": "npm run test:node",
"prepack": "npm run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"b4a": "1.6.7",
"bare-fs": "^4.0.2",
"bare-path": "^3.0.0",
"bare-tty": "^5.0.2",
"fs": "npm:bare-node-fs",
"path": "npm:bare-node-path",
"trac-crypto-api": "0.1.5"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/b4a": "^1.6.5",
"@types/brittle": "^3.5.0",
"@types/node": "^22.13.10",
"brittle": "^3.18.0",
"c8": "^11.0.0",
"eslint": "^10.2.0",
"globals": "^17.5.0",
"jiti": "^2.6.1",
"sodium-universal": "^5.0.1",
"trac-wallet": "1.0.3",
"ts-node": "^10.9.2",
"typescript": "^5.8.2",
"typescript-eslint": "^8.58.2"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Trac-Systems/trac-wallet"
}
}