-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.52 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.52 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
{
"name": "@remcostoeten/dev-widget",
"version": "0.0.1",
"description": "Minimal, portable dev menu widget for React applications",
"author": "Remco Stoeten",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/remcostoeten/dev-widget"
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"sideEffects": false,
"bin": {
"dev-widget": "./dist/cli.js"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=18"
},
"packageManager": "bun@1.3.5",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./internal": {
"types": "./dist/internal.d.ts",
"import": "./dist/internal.mjs",
"require": "./dist/internal.js"
},
"./react": {
"types": "./dist/react.d.ts",
"import": "./dist/react.mjs",
"require": "./dist/react.js"
},
"./next": {
"types": "./dist/next.d.ts",
"import": "./dist/next.mjs",
"require": "./dist/next.js"
},
"./tauri": {
"types": "./dist/tauri.d.ts",
"import": "./dist/tauri.mjs",
"require": "./dist/tauri.js"
}
},
"scripts": {
"prebuild": "bun test",
"build": "tsup",
"dev": "tsup --watch",
"dev:demo": "bun --cwd demo run dev",
"demo:build": "bun --cwd demo run build",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"lint": "oxlint src",
"lint:fix": "oxlint src --fix",
"format": "prettier --write \"src/**/*.{ts,tsx}\" --single-quote --no-semi --use-tabs --trailing-comma none",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\" --single-quote --no-semi --use-tabs --trailing-comma none",
"type-check": "tsc --noEmit",
"check": "bun run lint && bun run format:check && bun run type-check && bun test",
"prepublishOnly": "bun run check && bun test && bun run build"
},
"peerDependencies": {
"react": ">=18",
"react-dom": ">=18"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^25.2.3",
"@types/react": "19.2.0",
"@types/react-dom": "19.2.0",
"oxc-transform": "latest",
"oxlint": "latest",
"prettier": "latest",
"tsup": "latest",
"typescript": "latest",
"vite": "latest",
"@vitejs/plugin-react": "latest"
},
"keywords": [
"react",
"dev-tools",
"widget",
"development",
"debug",
"bun"
],
"files": [
"dist",
"README.md",
"LICENSE"
]
}