-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.15 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.15 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": "@cardstack/boxel-cli",
"version": "0.0.1",
"license": "MIT",
"description": "CLI tools for Boxel workspace management",
"main": "./dist/index.js",
"bin": {
"boxel": "./dist/index.js"
},
"files": [
"dist/**/*",
"README.md"
],
"engines": {
"node": ">= 18"
},
"keywords": [
"boxel",
"cli",
"cardstack"
],
"repository": {
"type": "git",
"url": "https://github.com/cardstack/boxel.git",
"directory": "packages/boxel-cli"
},
"author": "Cardstack",
"dependencies": {
"@aws-crypto/sha256-js": "catalog:",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"ignore": "catalog:"
},
"devDependencies": {
"@cardstack/local-types": "workspace:*",
"@cardstack/postgres": "workspace:*",
"@cardstack/runtime-common": "workspace:*",
"@types/node": "catalog:",
"@typescript-eslint/eslint-plugin": "catalog:",
"@typescript-eslint/parser": "catalog:",
"concurrently": "catalog:",
"esbuild": "^0.19.0",
"eslint": "catalog:",
"eslint-plugin-n": "catalog:",
"eslint-plugin-prettier": "catalog:",
"prettier": "catalog:",
"ts-node": "^10.9.1",
"tsx": "^4.0.0",
"typescript": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
},
"scripts": {
"build": "pnpm clean && tsx scripts/build.ts",
"clean": "rm -rf dist/*",
"start": "NODE_NO_WARNINGS=1 ts-node --transpileOnly src/index.ts",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\"",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\"",
"lint:js": "eslint . --report-unused-disable-directives --cache",
"lint:js:fix": "eslint . --report-unused-disable-directives --fix",
"lint:types": "tsc --noEmit",
"test": "vitest run",
"test:unit": "vitest run --exclude tests/integration/**",
"test:integration": "./tests/scripts/run-integration-with-test-pg.sh",
"test:watch": "vitest",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major",
"publish:npm": "npm publish",
"publish:dry": "npm publish --dry-run"
},
"publishConfig": {
"access": "public"
}
}