-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.68 KB
/
package.json
File metadata and controls
114 lines (114 loc) · 3.68 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@prover-coder-ai/docker-git",
"version": "1.0.59",
"description": "Minimal Vite-powered TypeScript console starter using Effect",
"main": "dist/src/docker-git/main.js",
"bin": {
"docker-git": "dist/src/docker-git/main.js"
},
"files": [
"dist"
],
"directories": {
"doc": "doc"
},
"scripts": {
"prebuild": "pnpm -C ../lib build",
"build": "pnpm run build:app && pnpm run build:docker-git",
"build:app": "vite build --ssr src/app/main.ts",
"prepack": "pnpm run build:docker-git",
"dev": "vite build --watch --ssr src/app/main.ts",
"prelint": "pnpm -C ../lib build",
"lint": "PATH=../../scripts:$PATH vibecode-linter src/",
"lint:tests": "PATH=../../scripts:$PATH vibecode-linter tests/",
"lint:effect": "PATH=../../scripts:$PATH eslint --config eslint.effect-ts-check.config.mjs .",
"prebuild:docker-git": "pnpm -C ../lib build",
"build:docker-git": "vite build --config vite.docker-git.config.ts",
"check": "pnpm run typecheck",
"clone": "pnpm -C ../.. run clone",
"open": "pnpm -C ../.. run open",
"docker-git": "node dist/src/docker-git/main.js",
"list": "pnpm -C ../.. run list",
"prestart": "pnpm run build",
"start": "node dist/main.js",
"pretest": "pnpm -C ../lib build",
"test": "pnpm run lint:tests && vitest run",
"pretypecheck": "pnpm -C ../lib build",
"typecheck": "tsc --noEmit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProverCoderAI/docker-git.git"
},
"keywords": [
"effect",
"typescript",
"vite",
"console"
],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/ProverCoderAI/docker-git/issues"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/ProverCoderAI/docker-git#readme",
"packageManager": "pnpm@10.32.1",
"dependencies": {
"@effect/cli": "^0.75.0",
"@effect/cluster": "^0.58.0",
"@effect/experimental": "^0.60.0",
"@effect/platform": "^0.96.0",
"@effect/platform-node": "^0.106.0",
"@effect/printer": "^0.49.0",
"@effect/printer-ansi": "^0.49.0",
"@effect/rpc": "^0.75.0",
"@effect/schema": "^0.75.5",
"@effect/sql": "^0.51.0",
"@effect/typeclass": "^0.40.0",
"@effect/workflow": "^0.18.0",
"effect": "^3.21.0",
"ink": "^6.8.0",
"react": "^19.2.4",
"react-reconciler": "^0.33.0",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@effect-template/lib": "workspace:*",
"@biomejs/biome": "^2.4.8",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "latest",
"@effect/vitest": "^0.29.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.1",
"@eslint/compat": "2.0.3",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@prover-coder-ai/eslint-plugin-suggest-members": "^0.0.25",
"@ton-ai-core/vibecode-linter": "^1.0.11",
"@types/node": "^24.12.0",
"@typescript-eslint/eslint-plugin": "^8.57.1",
"@typescript-eslint/parser": "^8.57.1",
"typescript-eslint": "^8.57.1",
"@vitest/coverage-v8": "^4.1.0",
"eslint": "^10.1.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-codegen": "0.34.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"eslint-plugin-unicorn": "^63.0.0",
"@vitest/eslint-plugin": "^1.6.12",
"@types/react": "^19.2.14",
"biome": "npm:@biomejs/biome@^2.4.8",
"globals": "^17.4.0",
"jscpd": "^4.0.8",
"typescript": "^5.9.3",
"vite": "^8.0.1",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.0"
}
}