-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.48 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.48 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
{
"name": "boxel-cli",
"version": "1.1.0",
"description": "CLI for bidirectional sync between local directories and Boxel workspaces",
"type": "module",
"main": "dist/index.js",
"bin": {
"boxel": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build"
},
"keywords": [
"boxel",
"cardstack",
"workspace",
"sync",
"cli",
"bidirectional"
],
"author": "Cardstack Foundation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cardstack/boxel-cli.git"
},
"bugs": {
"url": "https://github.com/cardstack/boxel-cli/issues"
},
"homepage": "https://github.com/cardstack/boxel-cli#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"ignore": "^5.3.2",
"p-limit": "^6.2.0",
"qs": "^6.15.1"
},
"devDependencies": {
"@types/node": "^20.14.0",
"@types/qs": "^6.15.0",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"eslint": "^8.57.0",
"tsx": "^4.15.0",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}