-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.43 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 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
80
81
82
83
84
85
86
87
88
89
{
"name": "@effectionx/inspector",
"version": "0.0.1",
"bugs": {
"url": "https://github.com/thefrontside/inspector/issues"
},
"license": "MIT",
"author": "engineering@frontside.com",
"repository": {
"type": "git",
"url": "git+https://github.com/thefrontside/inspector.git"
},
"bin": {
"inspector": "./dist/cli/index.js"
},
"files": [
"dist",
"ui/dist"
],
"type": "module",
"sideEffects": true,
"exports": {
".": {
"development": "./loader.ts",
"default": "./dist/loader.js"
},
"./lib": {
"development": "./mod.ts",
"default": "./dist/mod.js"
},
"./package.json": "./package.json"
},
"scripts": {
"start": "vite --host 0.0.0.0 ui",
"example": "node --experimental-strip-types --import ./loader.ts ./examples/spawn-children.ts",
"cli": "node --experimental-strip-types ./cli/index.ts",
"build": "pnpm run build:tsc && pnpm run build:ui",
"build:tsc": "tsc -p tsconfig.build.json",
"build:ui": "vite build ui",
"test:ui:dev": "playwright test -c playwright.dev.config.ts",
"test:ui:built": "playwright test -c playwright.built.config.ts",
"test": "node --test",
"check": "pnpm run \"/(typecheck$)|(lint$)|(fmt$)/\"",
"typecheck": "tsc -b --noEmit",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check"
},
"dependencies": {
"@ark/util": "^0.56.0",
"@b9g/crank": "^0.7.5",
"@effectionx/process": "^0.7.3",
"@effectionx/stream-helpers": "^0.8.0",
"@standard-schema/spec": "^1.0.0",
"arktype": "^2.1.27",
"configliere": "^0.3.0",
"h3": "2.0.1-rc.14",
"parse-sse": "^0.1.0",
"remeda": "^2"
},
"devDependencies": {
"@effectionx/bdd": "^0.4.3",
"@nano-router/history": "^4.0.4",
"@nano-router/router": "^4.0.4",
"@playwright/test": "^1.58.2",
"@shoelace-style/shoelace": "^2.20.1",
"@types/d3": "^7.4.3",
"@types/node": "22",
"d3": "^7.9.0",
"effection": "4.1.0-alpha.7",
"expect": "^30.2.0",
"lightningcss": "^1.31.1",
"oxfmt": "^0.34.0",
"oxlint": "^1.49.0",
"typescript": "^5.9.3",
"vite": "^7.3.1",
"vite-plugin-static-copy": "^3.2.0"
},
"peerDependencies": {
"effection": "^4.1.0-alpha.7"
},
"packageManager": "pnpm@9.15.9",
"pnpm": {
"patchedDependencies": {
"@effectionx/test-adapter@0.7.2": "patches/@effectionx__test-adapter@0.7.2.patch"
}
}
}