-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.05 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.05 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
{
"name": "@effect-template/lib",
"version": "1.0.0",
"private": true,
"description": "Shared business logic (docker-git orchestrator core)",
"main": "dist/index.js",
"directories": {
"doc": "doc"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsc -p tsconfig.json --watch",
"lint": "PATH=../../scripts:$PATH vibecode-linter src/",
"lint:effect": "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/effect-template.git"
},
"keywords": [
"effect",
"typescript",
"vite",
"console"
],
"author": "",
"license": "ISC",
"type": "module",
"bugs": {
"url": "https://github.com/ProverCoderAI/effect-template/issues"
},
"homepage": "https://github.com/ProverCoderAI/effect-template#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",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@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",
"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"
},
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./core/*": {
"types": "./dist/core/*.d.ts",
"import": "./dist/core/*.js"
},
"./usecases/*": {
"types": "./dist/usecases/*.d.ts",
"import": "./dist/usecases/*.js"
},
"./shell/*": {
"types": "./dist/shell/*.d.ts",
"import": "./dist/shell/*.js"
}
}
}