@r3ply/cli 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@r3ply/cli",
3
+ "author": "Spencer Van Wessem Scorcelletti",
4
+ "license": "AGPL-3.0-only",
5
+ "private": false,
6
+ "version": "0.0.1",
7
+ "description": "CLI for the r3ply commenting system",
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "https://github.com/asimpletune/r3ply"
11
+ },
12
+ "bugs": {
13
+ "url": "https://github.com/asimpletune/r3ply/issues"
14
+ },
15
+ "homepage": "https://r3ply.com",
16
+ "type": "module",
17
+ "main": "dist/index.mjs",
18
+ "types": "dist/index.d.ts",
19
+ "bin": {
20
+ "re": "./dist/index.mjs"
21
+ },
22
+ "files": [
23
+ "dist",
24
+ "README.md"
25
+ ],
26
+ "exports": {
27
+ ".": {
28
+ "types": "./dist/index.d.ts",
29
+ "import": "./dist/index.mjs"
30
+ }
31
+ },
32
+ "dependencies": {
33
+ "@exodus/schemasafe": "^1.3.0",
34
+ "@iarna/toml": "^2.2.5",
35
+ "@types/prompts": "^2.4.9",
36
+ "chalk": "^5.4.1",
37
+ "cli-highlight": "^2.1.11",
38
+ "commander": "^13.1.0",
39
+ "dayjs": "^1.11.13",
40
+ "fast-glob": "^3.3.3",
41
+ "oxide.ts": "^1.1.0",
42
+ "prompts": "^2.4.2",
43
+ "rita": "^3.1.3",
44
+ "serve-handler": "^6.1.6",
45
+ "typescript-mailbox-parser": "0.0.3",
46
+ "@r3ply/schema": "0.0.1",
47
+ "@r3ply/lib": "0.0.2",
48
+ "@r3ply/wasm": "^0.0.1"
49
+ },
50
+ "devDependencies": {
51
+ "@types/mock-fs": "^4.13.4",
52
+ "@types/serve-handler": "^6.1.4",
53
+ "mock-fs": "^5.5.0",
54
+ "tsup": "^8.4.0",
55
+ "tsx": "^4.19.3",
56
+ "typescript": "^5.5.4",
57
+ "vitest": "^3.2.4"
58
+ },
59
+ "volta": {
60
+ "node": "22.9.0"
61
+ },
62
+ "engines": {
63
+ "node": ">=22"
64
+ },
65
+ "scripts": {
66
+ "build": "tsup",
67
+ "build:watch": "tsup --watch",
68
+ "pretrain": "tsx src/comment_generation/prepare.ts",
69
+ "train": "tsx src/comment_generation/train.ts",
70
+ "test": "npx vitest run",
71
+ "test:watch": "npx vitest"
72
+ }
73
+ }