-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
83 lines (83 loc) · 2.65 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
{
"name": "@prover-coder-ai/docker-git-container",
"version": "0.0.0",
"private": true,
"description": "Pure container definition: Dockerfile, entrypoint and docker-compose template generation for docker-git project containers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"packageManager": "[email protected]",
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"lint": "NODE_OPTIONS=--max-old-space-size=4096 PATH=../../scripts:$PATH vibecode-linter src/",
"lint:effect": "NODE_OPTIONS=--max-old-space-size=4096 PATH=../../scripts:$PATH eslint --config eslint.effect-ts-check.config.mjs .",
"typecheck": "tsc --noEmit -p tsconfig.json",
"test": "vitest run --passWithNoTests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProverCoderAI/docker-git.git"
},
"keywords": [
"docker-git",
"container",
"dockerfile",
"docker-compose",
"templates"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ProverCoderAI/docker-git/issues"
},
"homepage": "https://github.com/ProverCoderAI/docker-git#readme",
"dependencies": {
"effect": "^3.21.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "latest",
"@effect/platform": "^0.96.1",
"@effect/platform-node": "^0.107.0",
"@effect/schema": "^0.75.5",
"@effect/vitest": "^0.29.0",
"@eslint-community/eslint-plugin-eslint-comments": "^4.7.2",
"@eslint/compat": "2.1.0",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "10.0.1",
"@prover-coder-ai/eslint-plugin-suggest-members": "^0.0.26",
"@ton-ai-core/vibecode-linter": "^1.0.11",
"@types/node": "^25.9.3",
"@typescript-eslint/eslint-plugin": "^8.61.1",
"@typescript-eslint/parser": "^8.61.1",
"typescript-eslint": "^8.61.1",
"@vitest/coverage-v8": "^4.1.9",
"eslint": "^10.5.0",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-codegen": "0.34.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-sonarjs": "^4.0.3",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"eslint-plugin-unicorn": "^67.0.0",
"fast-check": "^4.8.0",
"@vitest/eslint-plugin": "^1.6.20",
"globals": "^17.6.0",
"jscpd": "^5.0.10",
"typescript": "^6.0.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core/*": {
"types": "./dist/core/*.d.ts",
"import": "./dist/core/*.js"
}
}
}