mirror of
https://github.com/samiyev/puaros.git
synced 2025-12-27 23:06:54 +05:00
Add @puaros/core package with TypeScript configuration, Vitest test setup, and package structure
40 lines
980 B
JSON
40 lines
980 B
JSON
{
|
|
"name": "@puaros/core",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"description": "Core business logic for Puaros",
|
|
"keywords": [
|
|
"puaros"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"author": "Fozilbek Samiyev <fozilbek.samiyev@gmail.com>",
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc --watch",
|
|
"clean": "rm -rf dist",
|
|
"test": "vitest",
|
|
"test:ui": "vitest --ui",
|
|
"test:watch": "vitest --watch",
|
|
"test:coverage": "vitest run --coverage",
|
|
"test:run": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"simple-git": "^3.30.0",
|
|
"tree-sitter": "^0.21.1",
|
|
"tree-sitter-javascript": "^0.23.0",
|
|
"tree-sitter-typescript": "^0.23.0",
|
|
"uuid": "^13.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ioredis": "^5.0.0",
|
|
"@types/node": "^22.10.7",
|
|
"@types/uuid": "^11.0.0",
|
|
"@vitest/coverage-v8": "^4.0.10",
|
|
"@vitest/ui": "^4.0.10",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^4.0.10"
|
|
}
|
|
}
|