@hacksmith/doraval 0.2.11

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,59 @@
1
+ {
2
+ "name": "@hacksmith/doraval",
3
+ "version": "0.2.11",
4
+ "author": "Saif",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "git+https://github.com/saif-shines/doraval.git"
8
+ },
9
+ "devDependencies": {
10
+ "@types/bun": "latest"
11
+ },
12
+ "bin": {
13
+ "doraval": "bin/doraval-wrapper.js",
14
+ "dora": "bin/doraval-wrapper.js"
15
+ },
16
+ "description": "The context engineering toolkit for coding agents",
17
+ "engines": {
18
+ "bun": ">=1.2.0",
19
+ "node": ">=14.18.0"
20
+ },
21
+ "files": [
22
+ "bin/",
23
+ "dist/",
24
+ "README.md"
25
+ ],
26
+ "keywords": [
27
+ "cli",
28
+ "skills",
29
+ "plugins",
30
+ "agent",
31
+ "validation",
32
+ "lint",
33
+ "claude-code",
34
+ "grok",
35
+ "cursor",
36
+ "windsurf",
37
+ "mcp"
38
+ ],
39
+ "license": "MIT",
40
+ "workspaces": [
41
+ "apps/*"
42
+ ],
43
+ "scripts": {
44
+ "build": "bun build ./src/cli/index.ts --outfile ./bin/doraval.js --target bun",
45
+ "dev": "bun run ./src/cli/index.ts",
46
+ "test": "bun test",
47
+ "prepublishOnly": "bun run build && node -e \"const p=require('./package.json'),j=require('./jsr.json');if(p.version!==j.version){console.error('Version mismatch: package.json='+p.version+' jsr.json='+j.version);process.exit(1)}\"",
48
+ "bump": "bun run scripts/bump.ts",
49
+ "publish": "bunx jsr publish",
50
+ "site:dev": "cd apps/website && bun run dev",
51
+ "site:build": "cd apps/website && bun run build",
52
+ "site:preview": "cd apps/website && bun run preview"
53
+ },
54
+ "type": "module",
55
+ "dependencies": {
56
+ "citty": "^0.2.2",
57
+ "picocolors": "^1.1.1"
58
+ }
59
+ }