-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.09 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.09 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
{
"name": "@unicity-sphere/cli",
"version": "0.0.0",
"description": "The unified CLI for Sphere SDK and agentic-hosting control — DM-native",
"type": "module",
"license": "MIT",
"author": "Unicity Sphere",
"homepage": "https://github.com/unicity-sphere/sphere-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/unicity-sphere/sphere-cli.git"
},
"bugs": {
"url": "https://github.com/unicity-sphere/sphere-cli/issues"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"sphere": "./bin/sphere.mjs",
"scli": "./bin/sphere.mjs",
"sphere-cli": "./bin/sphere.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"bin",
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "npm run build && vitest run --config vitest.integration.config.ts",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"check": "npm run lint && npm run typecheck && npm run test",
"prepare": "npm run build",
"prepublishOnly": "npm run check && npm run build"
},
"dependencies": {
"@unicitylabs/sphere-sdk": "file:../../sphere-sdk",
"commander": "^12.1.0",
"multiformats": "^14.0.0"
},
"devDependencies": {
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"globals": "^17.5.0",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0",
"vitest": "^2.1.4"
},
"keywords": [
"sphere",
"sphere-sdk",
"unicity",
"cli",
"wallet",
"nostr",
"p2p",
"dm"
]
}