@genrtl/grtl 0.1.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/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@genrtl/grtl",
3
+ "version": "0.1.0",
4
+ "description": "CLI for GenRTL RTL engineering knowledge and MCP setup",
5
+ "type": "module",
6
+ "bin": {
7
+ "grtl": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup",
14
+ "dev": "tsup --watch",
15
+ "typecheck": "tsc --noEmit",
16
+ "lint": "eslint src --fix",
17
+ "lint:check": "eslint src",
18
+ "format": "prettier --write src",
19
+ "format:check": "prettier --check src",
20
+ "clean": "rm -rf dist node_modules",
21
+ "test": "vitest run",
22
+ "test:watch": "vitest",
23
+ "prepack": "npm run build",
24
+ "prepublishOnly": "npm run lint:check && npm run typecheck && npm test"
25
+ },
26
+ "dependencies": {
27
+ "@inquirer/prompts": "^8.2.0",
28
+ "commander": "^13.1.0",
29
+ "figlet": "^1.9.4",
30
+ "ora": "^9.0.0",
31
+ "picocolors": "^1.1.1"
32
+ },
33
+ "devDependencies": {
34
+ "@types/figlet": "^1.7.0",
35
+ "@types/node": "^22.19.1",
36
+ "@typescript-eslint/eslint-plugin": "^8.28.0",
37
+ "@typescript-eslint/parser": "^8.28.0",
38
+ "eslint": "^9.34.0",
39
+ "eslint-plugin-prettier": "^5.2.5",
40
+ "prettier": "^3.6.2",
41
+ "tsup": "^8.5.0",
42
+ "typescript": "^5.8.2",
43
+ "typescript-eslint": "^8.28.0",
44
+ "vitest": "^4.0.13"
45
+ },
46
+ "keywords": [
47
+ "genrtl",
48
+ "cli",
49
+ "ai",
50
+ "rtl",
51
+ "systemverilog",
52
+ "verilog",
53
+ "verification",
54
+ "mcp"
55
+ ],
56
+ "author": "xroting",
57
+ "license": "MIT",
58
+ "repository": {
59
+ "type": "git",
60
+ "url": "git+https://github.com/xroting/grtl.git",
61
+ "directory": "packages/cli"
62
+ },
63
+ "bugs": {
64
+ "url": "https://github.com/xroting/grtl/issues"
65
+ },
66
+ "homepage": "https://www.genrtl.com",
67
+ "publishConfig": {
68
+ "access": "public"
69
+ },
70
+ "engines": {
71
+ "node": ">=20.12.0"
72
+ }
73
+ }