-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2 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
{
"name": "usecharming",
"version": "0.1.1",
"type": "module",
"description": "Build and manage apps hosted by Charming.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tambo-labs/charming-cli.git"
},
"bugs": {
"url": "https://github.com/tambo-labs/charming-cli/issues"
},
"homepage": "https://github.com/tambo-labs/charming-cli#readme",
"bin": {
"charming": "bin/run.js"
},
"files": [
"bin",
"dist",
"examples",
"provenance.json",
"UPSTREAM.json",
"skills"
],
"publishConfig": {
"provenance": true
},
"keywords": [
"charming",
"cli",
"oclif",
"mcp",
"agent",
"personal-software"
],
"scripts": {
"build": "rm -rf dist && bun node_modules/typescript/bin/tsc -p tsconfig.build.json",
"build:test": "rm -rf dist && bun node_modules/typescript/bin/tsc -p tsconfig.build.json --sourceMap false --declarationMap false",
"build:tsc": "rm -rf dist && node node_modules/typescript/bin/tsc -p tsconfig.build.json --sourceMap false --declarationMap false",
"check": "bun run openapi:check && bun run test && bun run typecheck && bun run build",
"openapi:gen": "bun scripts/generate.ts",
"openapi:check": "bun scripts/generate.ts --check",
"prepack": "npm run build:tsc",
"test": "bun run build:test && vitest run",
"test:coverage": "bun run build:test && vitest run --coverage",
"typecheck": "bun node_modules/typescript/bin/tsc --noEmit && bun node_modules/typescript/bin/tsc -p tsconfig.scripts.json",
"lint": "bun run typecheck"
},
"dependencies": {
"@oclif/core": "4.14.0"
},
"devDependencies": {
"@hey-api/openapi-ts": "0.99.0",
"@oclif/test": "4.2.0",
"@types/node": "^26.0.0",
"@vitest/coverage-v8": "^4.1.11",
"typescript": "6.0.3",
"vitest": "^4.1.11"
},
"oclif": {
"bin": "charming",
"commands": "./dist/commands",
"dirname": "charming",
"topicSeparator": " "
},
"engines": {
"node": ">=22"
}
}