-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.96 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.96 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
{
"name": "remnote-cli",
"version": "0.8.0",
"description": "CLI companion app for RemNote Bridge via WebSocket",
"type": "module",
"main": "dist/index.js",
"bin": {
"remnote-cli": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"dev:watch": "tsx watch src/index.ts",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:integration": "tsx test/integration/run-integration.ts",
"test:ui": "vitest --ui",
"lint": "eslint src test --ext .ts",
"lint:fix": "eslint src test --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"quality": "./code-quality.sh",
"precommit": "./code-quality.sh"
},
"keywords": [
"remnote",
"cli",
"websocket",
"agent",
"openclaw"
],
"author": "nightingale7 <nightingale7@gmail.com>",
"license": "MIT",
"files": [
"dist/",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/robert7/remnote-cli.git"
},
"bugs": {
"url": "https://github.com/robert7/remnote-cli/issues"
},
"homepage": "https://github.com/robert7/remnote-cli#readme",
"dependencies": {
"commander": "^13.0.0",
"pino": "^10.3.1",
"ws": "^8.19.0"
},
"devDependencies": {
"@types/node": "^25.2.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^1.6.1",
"@vitest/ui": "^1.6.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^1.6.1"
},
"engines": {
"node": ">=18.0.0"
}
}