-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.16 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.16 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
{
"name": "@mynthai/nova",
"version": "0.0.4",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"description": "CLI for easy stablecoins",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MynthAI/nova.git"
},
"packageManager": "pnpm@10.30.1",
"engines": {
"node": "==24"
},
"type": "module",
"bin": {
"nova": "bin/nova.mjs"
},
"files": ["dist"],
"scripts": {
"prebuild": "pnpm del -rf dist",
"build": "pnpm tsc",
"postbuild": "pnpm del -rf dist/tests",
"link": "pnpm link --global",
"lint": "pnpm npm-run-all lint:prettier lint:check lint:lint",
"lint:check": "pnpm biome check .",
"lint:lint": "pnpm biome lint .",
"lint:prettier": "pnpm biome format .",
"prettier": "pnpm npm-run-all prettier:format prettier:check prettier:lint",
"prettier:check": "pnpm biome check --write .",
"prettier:format": "pnpm biome format --write .",
"prettier:lint": "pnpm biome lint --write .",
"slop": "pnpm npm-run-all slop:braces slop:arrows prettier",
"slop:arrows": "pnpm convert-to-arrow .",
"slop:braces": "pnpm exec sg scan --rule .ast-grep/rules/strip-braces.yml -U .",
"test": "pnpm vitest --run"
},
"resolutions": {
"@harmoniclabs/crypto": "^0.3.0-dev0"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"@msgpack/msgpack": "^3.1.3",
"@noble/ed25519": "^3.0.1",
"@noble/hashes": "^2.0.1",
"@scure/base": "^2.0.0",
"@scure/bip39": "^2.0.1",
"@toon-format/toon": "^2.1.0",
"arktype": "^2.2.0",
"commander": "^14.0.3",
"conf": "^15.1.0",
"decimal.js": "^10.6.0",
"emailjs": "^5.0.0",
"ky": "^1.14.3",
"native-machine-id": "^0.3.6",
"safe-stable-stringify": "^2.5.0",
"ts-handling": "^0.2.6"
},
"devDependencies": {
"@ast-grep/cli": "^0.42.0",
"@biomejs/biome": "^2.4.8",
"@types/config": "^3.3.5",
"@types/node": "^25.5.0",
"convert-to-arrow": "^1.0.21",
"del-cli": "^7.0.0",
"execa": "^9.6.1",
"npm-run-all": "^4.1.5",
"tsx": "^4.21.0",
"turbo": "^2.8.20",
"typescript": "^6.0.2",
"vitest": "^4.1.1"
}
}