-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.38 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.38 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
{
"name": "@svporg/forge",
"version": "0.3.1",
"type": "module",
"description": "Semantic Voxel Protocol — five-layer observability framework for AI-assisted development",
"license": "MIT",
"bin": {
"forge": "./dist/packages/cli/index.js"
},
"files": [
"dist/packages/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest run",
"lint": "eslint packages/",
"lint:fix": "eslint packages/ --fix",
"format": "prettier --write 'packages/**/*.ts'",
"format:check": "prettier --check 'packages/**/*.ts'",
"check": "tsc --noEmit && npm run lint && npm run format:check"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"typescript": "^5.9.3",
"@types/node": "^22.0.0",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"eslint-plugin-unicorn": "^63.0.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript-eslint": "^8.57.0",
"vitest": "^4.0.18"
},
"repository": {
"type": "git",
"url": "https://github.com/SemanticVoxelProtocol/forge"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@inquirer/prompts": "^8.3.2",
"commander": "^14.0.3"
}
}