-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.83 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.83 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
{
"name": "@stainless-code/layers-devtools",
"version": "0.2.4",
"description": "TanStack Devtools panel for @stainless-code/layers — stack picker and layer state inspector.",
"keywords": [
"devtools",
"dialog",
"drawer",
"headless",
"layer",
"modal",
"stack",
"tanstack-intent",
"typescript"
],
"homepage": "https://stainless-code.com/layers",
"bugs": {
"url": "https://github.com/stainless-code/layers/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/stainless-code/layers.git",
"directory": "packages/devtools"
},
"funding": "https://github.com/sponsors/SutuSebastian",
"files": [
"dist",
"src",
"!src/**/*.test.ts"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"@stainless-code/source": "./src/index.ts",
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./production": {
"@stainless-code/source": "./src/production.ts",
"types": "./dist/production/index.d.mts",
"import": "./dist/production/index.mjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"build": "tsdown",
"check:pack": "attw --pack . --profile esm-only && publint --strict",
"test": "bun test ./src",
"test:coverage": "bun test ./src --coverage --coverage-threshold=0.75",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@stainless-code/layers": "workspace:*",
"@tanstack/devtools-event-client": "0.5.0",
"@tanstack/devtools-ui": "0.5.2",
"@tanstack/devtools-utils": "0.5.1",
"solid-js": "1.9.14"
},
"devDependencies": {
"rolldown-plugin-solid": "0.2.1"
},
"engines": {
"bun": ">=1.0.0",
"node": "^20.19.0 || >=22.12.0"
}
}