Base configuration

This commit is contained in:
2025-03-29 22:55:08 +01:00
parent 482b9cae09
commit 19180d4516
8 changed files with 411 additions and 0 deletions

41
package.json Normal file
View File

@@ -0,0 +1,41 @@
{
"name": "vhdldoc",
"version": "1.0.0",
"description": "VHDL Documentation Generator using web-tree-sitter",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "ts-node -r tsconfig-paths/register src/index.ts",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"format": "prettier --write .",
"test": "jest",
"test:watch": "jest --watch",
"docs": "typedoc"
},
"author": "",
"license": "MIT",
"devDependencies": {
"@stylistic/eslint-plugin": "^2.6.2",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"eslint": "^8.56.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"typedoc": "^0.26.5",
"typescript": "^5.5.3"
},
"dependencies": {
"ts-injex": "github:PxaMMaxP/TSinjex",
"wavedrom": "^3.5.0",
"web-tree-sitter": "^0.22.3"
}
}