-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.43 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
{
"name": "effect-jmap",
"version": "0.10.0",
"description": "A TypeScript library implementing RFC 8621 JMAP for Mail using Effect",
"repository": {
"type": "git",
"url": "https://github.com/i11v/effect-jmap.git"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "pnpm run build:clean && tsc",
"build:clean": "rm -rf dist",
"ci": "pnpm typecheck && pnpm test && pnpm build",
"dev": "tsc --watch",
"test": "vitest run --exclude 'tests/functional/**' --exclude 'tests/spec/**'",
"test:watch": "vitest --watch --exclude 'tests/functional/**' --exclude 'tests/spec/**'",
"test:functional": "vitest run tests/functional/",
"test:spec": "vitest run tests/spec/",
"test:all": "vitest run",
"generate:spec-tests": "tsx scripts/generate-spec-tests.ts",
"coverage:spec": "tsx scripts/spec-coverage.ts",
"test:server:start": "docker compose -f docker-compose.test.yml up -d",
"test:server:stop": "docker compose -f docker-compose.test.yml down",
"test:server:logs": "docker compose -f docker-compose.test.yml logs -f",
"test:server:clean": "docker compose -f docker-compose.test.yml down -v && rm -rf .stalwart-data",
"seed-test-data": "tsx scripts/seed-test-data.ts",
"generate-test-data": "tsx scripts/generate-test-emails.ts",
"typecheck": "tsc --noEmit",
"release:dry-run": "semantic-release --dry-run",
"prepare": "husky"
},
"keywords": [
"jmap",
"mail",
"email",
"effect",
"typescript",
"rfc8621"
],
"author": "Ilnur Khalilov <i@khl.lv>",
"license": "MIT",
"engines": {
"node": ">=24"
},
"packageManager": "pnpm@10.17.0",
"devDependencies": {
"@ai-sdk/anthropic": "^1.2.12",
"ai": "^4.3.16",
"@commitlint/cli": "^20.3.1",
"@commitlint/config-conventional": "^20.3.1",
"@effect/language-service": "^0.56.0",
"@effect/platform-node": "^0.97.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^24.6.0",
"dotenv": "^17.2.2",
"husky": "^9.1.7",
"semantic-release": "^25.0.2",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"vitest": "^3.2.4",
"yaml": "^2.8.0"
},
"dependencies": {
"@effect/platform": "^0.91.1",
"effect": "^3.17.14"
}
}