-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.06 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.06 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
{
"name": "@prover-coder-ai/openapi-effect",
"version": "1.0.22",
"description": "Drop-in replacement for openapi-fetch with an opt-in Effect API",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"types": "./src/index.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"dev": "vite build --watch",
"lint": "npx @ton-ai-core/vibecode-linter src/",
"lint:tests": "npx @ton-ai-core/vibecode-linter tests/",
"lint:effect": "npx eslint --config eslint.effect-ts-check.config.mjs .",
"lint:types": "./scripts/lint-types.sh",
"check": "pnpm run typecheck",
"prestart": "pnpm run build",
"start": "node dist/main.js",
"test": "pnpm run lint:tests && vitest run",
"typecheck": "tsc --noEmit",
"gen:strict-api": "npx ts-node --esm scripts/gen-strict-api.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProverCoderAI/effect-template.git"
},
"keywords": [
"effect",
"typescript",
"vite",
"console"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ProverCoderAI/effect-template/issues"
},
"homepage": "https://github.com/ProverCoderAI/effect-template#readme",
"packageManager": "pnpm@10.33.0",
"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",
"openapi-typescript-helpers": "^0.1.0",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@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.5",
"@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": "^24.12.2",
"@typescript-eslint/eslint-plugin": "^8.58.1",
"@typescript-eslint/parser": "^8.58.1",
"typescript-eslint": "^8.58.1",
"@vitest/coverage-v8": "^4.1.4",
"eslint": "^10.2.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": "^13.0.0",
"eslint-plugin-sonarjs": "^4.0.2",
"eslint-plugin-sort-destructure-keys": "^3.0.0",
"eslint-plugin-unicorn": "^64.0.0",
"@vitest/eslint-plugin": "^1.6.15",
"globals": "^17.4.0",
"jscpd": "^4.0.8",
"typescript": "^6.0.2",
"vite": "^8.0.8",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.4"
}
}