-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.69 KB
/
package.json
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-log",
"type": "module",
"version": "0.36.0",
"license": "MIT",
"author": "Milan Suk <[email protected]>",
"description": "Logging batteris for effect-ts",
"homepage": "https://sukovanej.github.io/effect-log",
"repository": {
"type": "git",
"url": "https://github.com/sukovanej/effect-log.git"
},
"bugs": {
"url": "https://github.com/sukovanej/effect-log/issues"
},
"packageManager": "[email protected]",
"publishConfig": {
"access": "public",
"directory": "dist"
},
"scripts": {
"build": "pnpm build-prepare && pnpm build-esm && pnpm build-cjs && pnpm build-annotate && build-utils pack-v2",
"build-prepare": "build-utils prepare-v2",
"build-esm": "tsc -b tsconfig.build.json",
"build-cjs": "babel build/esm --plugins @babel/transform-export-namespace-from --plugins @babel/transform-modules-commonjs --out-dir build/cjs --source-maps",
"build-annotate": "babel build --plugins annotate-pure-calls --out-dir build --source-maps",
"clean": "rimraf build dist coverage .tsbuildinfo",
"check": "tsc -b tsconfig.json",
"check:watch": "tsc -b tsconfig.json --watch",
"test": "vitest",
"coverage": "vitest --run --coverage related",
"coverage-all": "vitest --run --coverage",
"circular": "madge --extensions ts --circular --no-color --no-spinner --warning src",
"lint": "eslint src test examples",
"lint-fix": "eslint src test examples --fix",
"docgen": "docgen"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/plugin-transform-export-namespace-from": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.9",
"@effect/build-utils": "^0.7.8",
"@effect/docgen": "^0.5.1",
"@effect/eslint-plugin": "^0.2.0",
"@effect/language-service": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitest/coverage-v8": "^2.1.3",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"effect": "3.11.0",
"eslint": "^8.57.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-codegen": "0.29.0",
"eslint-plugin-deprecation": "^3.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-sort-destructure-keys": "^2.0.0",
"madge": "^8.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vite": "^5.4.10",
"vitest": "^2.1.3"
},
"peerDependencies": {
"effect": "^3.11.0"
},
"pnpm": {
"updateConfig": {
"ignoreDependencies": [
"eslint"
]
}
}
}