-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.11 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.11 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
{
"repository": {
"type": "git",
"url": "https://github.com/jpb06/effect-errors"
},
"type": "module",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./dts/index.d.ts",
"exports": {
".": {
"require": {
"types": "./dts/index.d.ts",
"default": "./cjs/index.js"
},
"import": {
"types": "./dts/index.d.ts",
"default": "./esm/index.js"
}
}
},
"name": "effect-errors",
"version": "1.10.23",
"author": "jpb06 <jp.bois.06@outlook.fr>",
"description": "A POC for errors reporting in Effect",
"keywords": [
"effect"
],
"license": "MIT",
"engines": {
"node": ">=20.x"
},
"scripts": {
"clean": "rm -rf ./dist && rm -rf node_modules && rm pnpm-lock.yaml",
"copy-package": "copyfiles package.json ./dist/",
"copy-readme": "copyfiles README.md ./dist/",
"build": "del-cli ./dist && pnpm build-esm && pnpm build-cjs",
"build-esm": "tsc --project tsconfig.esm.json",
"build-cjs": "tsc --project tsconfig.cjs.json",
"postbuild-cjs": "echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
"postbuild-esm": "echo '{\"type\": \"module\"}' > dist/esm/package.json",
"postbuild": "pnpm copy-package && pnpm copy-readme && pnpm resolve-ts-paths-esm --path ./dist --tsconfigPath ./tsconfig.json --debug true",
"check": "biome check .",
"format": "biome format --write .",
"format-ci": "biome format .",
"lint": "biome lint .",
"lint-fix": "biome lint --write .",
"type-check": "tsc --noEmit",
"test": "vitest",
"test-ci": "vitest --coverage --run",
"test-dev": "vitest --coverage",
"test-coverage": "vitest run --coverage",
"sync-icons": "pnpm generateReadmeIconsEsm -h 50",
"run-example": "pnpm tsx ./src/examples/util/run",
"run-examples": "pnpm tsx ./src/examples/util/run-all.ts",
"bundle-example": "pnpm esbuild --bundle --platform=node --format=esm --sourcemap=external --minify --inject:./src/examples/bundling/cjs-shims.ts --outfile=./src/tests/bundle/from-promise.js ./src/examples/bundling/from-promise.bundle.ts"
},
"dependencies": {
"comment-json": "4.6.2",
"picocolors": "1.1.1",
"source-map-js": "1.2.1"
},
"peerDependencies": {
"@effect/cluster": "0.x",
"@effect/platform": "0.x",
"@effect/platform-node": "0.x",
"@effect/rpc": "0.x",
"@effect/sql": "0.x",
"effect": "3.x"
},
"devDependencies": {
"@biomejs/biome": "2.4.6",
"@types/node": "25.5.0",
"@vitest/coverage-v8": "4.1.0",
"copyfiles": "2.4.1",
"del-cli": "7.0.0",
"esbuild": "0.27.4",
"readme-package-icons": "1.2.2",
"ts-paths-resolver": "1.3.6",
"tsx": "4.21.0",
"typescript": "5.9.3",
"vite-tsconfig-paths": "6.1.1",
"vitest": "4.1.0",
"vitest-mock-extended": "3.1.0"
},
"pnpm": {
"ignoredBuiltDependencies": [
"@parcel/watcher"
],
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild"
]
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}