-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.9 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.9 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
{
"name": "obug",
"type": "module",
"version": "2.1.1",
"packageManager": "pnpm@11.0.3",
"description": "A lightweight JavaScript debugging utility, forked from debug, featuring TypeScript and ESM support.",
"author": "Kevin Deng <sxzz@sxzz.moe>",
"license": "MIT",
"funding": [
"https://github.com/sponsors/sxzz",
"https://opencollective.com/debug"
],
"homepage": "https://github.com/sxzz/obug#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/sxzz/obug.git"
},
"bugs": {
"url": "https://github.com/sxzz/obug/issues"
},
"exports": {
".": {
"browser": "./dist/browser.js",
"default": "./dist/node.js"
},
"./package.json": "./package.json"
},
"main": "./dist/node.js",
"module": "./dist/node.js",
"unpkg": "./dist/browser.min.js",
"jsdelivr": "./dist/browser.min.js",
"types": "./dist/browser.d.ts",
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest",
"test:coverage": "vitest --project node --coverage",
"play": "vite playground",
"typecheck": "tsgo --noEmit",
"format": "prettier --cache --write .",
"release": "bumpp",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@sxzz/eslint-config": "^8.0.0",
"@sxzz/prettier-config": "^2.3.1",
"@types/debug": "^4.1.13",
"@types/node": "^25.6.0",
"@typescript/native-preview": "7.0.0-dev.20260502.1",
"@vitest/browser-playwright": "^4.1.5",
"@vitest/coverage-v8": "^4.1.5",
"bumpp": "^11.0.1",
"debug": "^4.4.3",
"eslint": "^10.3.0",
"playwright": "^1.59.1",
"prettier": "^3.8.3",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"prettier": "@sxzz/prettier-config"
}