@tanstack/devtools
Version:
TanStack Devtools is a set of tools for building advanced devtools for your application.
85 lines • 2.09 kB
JSON
{
"name": "@tanstack/devtools",
"version": "0.12.4",
"description": "TanStack Devtools is a set of tools for building advanced devtools for your application.",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/devtools.git",
"directory": "packages/devtools"
},
"homepage": "https://tanstack.com/devtools",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"devtools"
],
"type": "module",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"exports": {
"workerd": {
"types": "./dist/index.d.ts",
"import": "./dist/server.js"
},
"browser": {
"development": {
"types": "./dist/index.d.ts",
"import": "./dist/dev.js"
},
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"node": {
"types": "./dist/index.d.ts",
"import": "./dist/server.js"
},
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"bin": {
"intent": "./bin/intent.js"
},
"sideEffects": false,
"engines": {
"node": ">=18"
},
"files": [
"dist/",
"src",
"skills",
"bin"
],
"dependencies": {
"@solid-primitives/event-listener": "^2.4.3",
"@solid-primitives/keyboard": "^1.3.3",
"@solid-primitives/resize-observer": "^2.1.3",
"clsx": "^2.1.1",
"goober": "^2.1.16",
"solid-js": "^1.9.9",
"@tanstack/devtools-client": "0.0.7",
"@tanstack/devtools-event-bus": "0.4.2",
"@tanstack/devtools-ui": "0.5.3"
},
"peerDependencies": {
"solid-js": ">=1.9.7"
},
"devDependencies": {
"tsup": "^8.5.0",
"tsup-preset-solid": "^2.2.0",
"vite-plugin-solid": "^2.11.11"
},
"scripts": {
"clean": "premove ./build ./dist",
"lint:fix": "eslint ./src --fix",
"test:eslint": "eslint ./src",
"test:lib": "vitest",
"test:lib:dev": "pnpm test:lib --watch",
"test:types": "tsc",
"test:build": "publint --strict",
"build": "tsup"
}
}