-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
100 lines (100 loc) · 2.68 KB
/
Copy pathpackage.json
File metadata and controls
100 lines (100 loc) · 2.68 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
{
"name": "effect-cdp",
"version": "0.1.6",
"keywords": [
"cdp",
"chrome devtools protocol",
"effect"
],
"license": "MIT",
"author": "yovanoc <yovano_c@outlook.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/yovanoc/effect-cdp.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json",
"./generated/*": {
"types": "./dist/generated/*.d.mts",
"import": "./dist/generated/*.mjs"
},
"./helpers/*": {
"types": "./dist/helpers/*.d.mts",
"import": "./dist/helpers/*.mjs"
},
"./layers/*": {
"types": "./dist/layers/*.d.mts",
"import": "./dist/layers/*.mjs"
}
},
"scripts": {
"prepare": "effect-tsgo patch && ./scripts/prepare-effect.sh",
"codegen": "bun scripts/codegen.ts",
"check-codegen": "bun scripts/check-codegen.ts",
"build": "tsdown",
"test": "vitest",
"test:unit": "vitest run",
"test:integration": "bun test tests/integration.test.ts",
"smoke": "bun scripts/smoke.ts",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"ts:check": "tsgo --noEmit",
"check": "bun run --parallel fmt:check lint ts:check test",
"prepublishOnly": "bun run build",
"release": "changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.7.0",
"@changesets/cli": "^2.31.0",
"@effect/platform-bun": ">=4.0.0-beta.68 || >=4.0.0",
"@effect/platform-node": ">=4.0.0-beta.68 || >=4.0.0",
"@effect/tsgo": "0.7.4",
"@effect/vitest": ">=4.0.0-beta.68 || >=4.0.0",
"@types/bun": "^1.3.14",
"@typescript/native-preview": "^7.0.0-dev.20260421.2",
"devtools-protocol": "^0.0.1632630",
"lint-staged": "^17.0.5",
"oxfmt": "^0.51.0",
"oxlint": "^1.66.0",
"oxlint-tsgolint": "^0.23.0",
"testcontainers": "^12.0.0",
"tsdown": "^0.22.0",
"typescript": "^6.0.3",
"vitest": "^4.1.6",
"ws": "^8.18.0"
},
"peerDependencies": {
"@effect/platform-bun": ">=4.0.0-beta.68 || >=4.0.0",
"@effect/platform-node": ">=4.0.0-beta.68 || >=4.0.0",
"effect": ">=4.0.0-beta.68 || >=4.0.0"
},
"peerDependenciesMeta": {
"@effect/platform-bun": {
"optional": true
},
"@effect/platform-node": {
"optional": true
}
},
"lint-staged": {
"*": "bun run oxfmt --no-error-on-unmatched-pattern",
"*.{js,jsx,ts,tsx,mjs,cjs}": "bun run lint"
},
"engines": {
"bun": ">=1.1",
"node": ">=26"
}
}