-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.33 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.33 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
{
"name": "effect-messaging",
"version": "1.0.0",
"packageManager": "pnpm@10.25.0+sha512.5e82639027af37cf832061bcc6d639c219634488e0f2baebe785028a793de7b525ffcd3f7ff574f5e9860654e098fe852ba8ac5dd5cefe1767d23a020a92f501",
"description": "",
"main": "index.js",
"scripts": {
"clean": "node scripts/clean.mjs",
"codegen": "pnpm --recursive --parallel run codegen",
"build": "tsc -b tsconfig.build.json && pnpm --recursive --parallel run build",
"circular": "madge --extensions ts --circular --no-color --no-spinner packages/*/src",
"test": "vitest",
"coverage": "vitest --coverage",
"check": "tsc -b tsconfig.json",
"check:watch": "tsc -b tsconfig.json -w",
"check-recursive": "pnpm --recursive exec tsc -b tsconfig.json",
"lint": "eslint \"**/{src,test,examples,scripts,dtslint}/**/*.{ts,mjs}\"",
"lint-fix": "pnpm lint --fix",
"docgen": "pnpm --recursive exec docgen && node scripts/docs.mjs",
"test-types": "tstyche",
"changeset-version": "changeset version",
"changeset-publish": "pnpm build && changeset publish"
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": "24",
"npm": "10"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@effect/build-utils": "^0.8.9",
"@effect/docgen": "^0.5.2",
"@effect/eslint-plugin": "^0.3.2",
"@effect/language-service": "^0.83.0",
"@effect/platform": "^0.96.0",
"@effect/vitest": "^0.29.0",
"@eslint/js": "^9.24.0",
"@types/node": "^24.9.1",
"@typescript-eslint/eslint-plugin": "^8.39.1",
"@typescript-eslint/parser": "^8.39.1",
"@vitest/coverage-v8": "^4.0.0",
"babel-plugin-annotate-pure-calls": "^0.5.0",
"effect": "^3.21.0",
"eslint": "^9.24.0",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-import-x": "^4.10.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"glob": "^13.0.6",
"madge": "^8.0.0",
"prettier": "^3.5.3",
"tstyche": "^3.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.0"
}
}