@forgespace/siza-gen 0.2.0
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/LICENSE +21 -0
- package/README.md +54 -0
- package/dist/index.d.ts +2369 -0
- package/dist/index.js +41801 -0
- package/package.json +100 -0
package/package.json
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@forgespace/siza-gen",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "Siza AI generation engine — multi-framework code generation, component registry, and ML-powered quality scoring",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"types": "dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"types": "./dist/index.d.ts"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsup",
|
|
16
|
+
"dev": "tsc --watch",
|
|
17
|
+
"clean": "rm -rf dist coverage .tsbuildinfo node_modules/.cache",
|
|
18
|
+
"lint": "eslint . --fix",
|
|
19
|
+
"lint:check": "eslint .",
|
|
20
|
+
"format": "prettier --write .",
|
|
21
|
+
"format:check": "prettier --check .",
|
|
22
|
+
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
|
|
23
|
+
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --onlyChanged",
|
|
24
|
+
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
|
|
25
|
+
"typecheck": "tsc --noEmit",
|
|
26
|
+
"validate": "npm run lint:check && npm run format:check && npm run typecheck && npm test",
|
|
27
|
+
"validate:snippets": "npx tsx src/scripts/validate-all-snippets.ts",
|
|
28
|
+
"validate:tokens": "npx tsx src/scripts/check-semantic-tokens.ts",
|
|
29
|
+
"registry:stats": "npx tsx src/scripts/count-registry.ts",
|
|
30
|
+
"export:training": "npx tsx src/scripts/export-training-data.ts",
|
|
31
|
+
"prepare": "husky install || true",
|
|
32
|
+
"prepublishOnly": "npm run build",
|
|
33
|
+
"prepack": "npm run build"
|
|
34
|
+
},
|
|
35
|
+
"dependencies": {
|
|
36
|
+
"@huggingface/transformers": "^3.8.1",
|
|
37
|
+
"better-sqlite3": "^12.6.2",
|
|
38
|
+
"pino": "^10.3.1",
|
|
39
|
+
"pino-pretty": "^13.1.3",
|
|
40
|
+
"sqlite-vss": "^0.1.2",
|
|
41
|
+
"zod": "^4.0.0"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@eslint/js": "^9.17.0",
|
|
45
|
+
"@types/better-sqlite3": "^7.6.13",
|
|
46
|
+
"@types/jest": "^29.5.14",
|
|
47
|
+
"@types/node": "^22.19.11",
|
|
48
|
+
"eslint": "^9.0.0",
|
|
49
|
+
"eslint-config-prettier": "^9.0.0",
|
|
50
|
+
"globals": "^14.0.0",
|
|
51
|
+
"husky": "^8.0.3",
|
|
52
|
+
"jest": "^29.7.0",
|
|
53
|
+
"lint-staged": "^16.2.7",
|
|
54
|
+
"prettier": "^3.0.0",
|
|
55
|
+
"ts-jest": "^29.4.6",
|
|
56
|
+
"ts-node": "^10.9.2",
|
|
57
|
+
"tsup": "^8.5.1",
|
|
58
|
+
"typescript": "^5.1.6",
|
|
59
|
+
"typescript-eslint": "^8.55.0"
|
|
60
|
+
},
|
|
61
|
+
"engines": {
|
|
62
|
+
"node": ">=22"
|
|
63
|
+
},
|
|
64
|
+
"publishConfig": {
|
|
65
|
+
"access": "public"
|
|
66
|
+
},
|
|
67
|
+
"files": [
|
|
68
|
+
"dist",
|
|
69
|
+
"!dist/**/*.map",
|
|
70
|
+
"README.md",
|
|
71
|
+
"LICENSE"
|
|
72
|
+
],
|
|
73
|
+
"keywords": [
|
|
74
|
+
"ai",
|
|
75
|
+
"code-generation",
|
|
76
|
+
"component-registry",
|
|
77
|
+
"react",
|
|
78
|
+
"vue",
|
|
79
|
+
"angular",
|
|
80
|
+
"svelte",
|
|
81
|
+
"typescript",
|
|
82
|
+
"forgespace",
|
|
83
|
+
"siza"
|
|
84
|
+
],
|
|
85
|
+
"license": "MIT",
|
|
86
|
+
"repository": {
|
|
87
|
+
"type": "git",
|
|
88
|
+
"url": "https://github.com/Forge-Space/siza-gen.git"
|
|
89
|
+
},
|
|
90
|
+
"bugs": {
|
|
91
|
+
"url": "https://github.com/Forge-Space/siza-gen/issues"
|
|
92
|
+
},
|
|
93
|
+
"homepage": "https://github.com/Forge-Space/siza-gen#readme",
|
|
94
|
+
"lint-staged": {
|
|
95
|
+
"src/**/*.ts": [
|
|
96
|
+
"eslint --fix",
|
|
97
|
+
"prettier --write"
|
|
98
|
+
]
|
|
99
|
+
}
|
|
100
|
+
}
|