-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.68 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.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
{
"name": "@wbe/debug",
"version": "3.2.0",
"description": "Tiny debug tool (~500 bytes) for terminal and browser inspired by debug-js/debug API.",
"author": "Willy Brauner",
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/willybrauner/debug.git"
},
"keywords": [
"debug",
"debugger",
"log",
"logger",
"console.log",
"nodejs",
"browser"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"build:watch": "tsup --watch --sourcemap",
"clean": "rm -rf ./dist && rm -rf tsconfig.tsbuildinfo",
"dev:example-browser": "pnpm --filter ./examples/browser run dev",
"dev:example-node": "DEBUG=* node examples/node/index.js",
"pre-publish": "npm run build && npm run test",
"test:watch": "vitest",
"test": "vitest --run",
"ncu": "find . -name 'node_modules' -prune -o -name 'package.json' -execdir ncu -u ';'",
"size": "size-limit"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.2.0",
"@types/node": "^22.14.1",
"size-limit": "^11.2.0",
"terser": "^5.39.0",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"prettier": {
"semi": false
},
"size-limit": [
{
"name": "@wbe/debug",
"path": "dist/index.js",
"limit": "650 B"
}
],
"packageManager": "pnpm@9.14.2+sha512.6e2baf77d06b9362294152c851c4f278ede37ab1eba3a55fda317a4a17b209f4dbb973fb250a77abc463a341fcb1f17f17cfa24091c4eb319cda0d9b84278387"
}