-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.59 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": "bquery-devtools-extension",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"deploy-v3": "bun run clean && bun run build-tooling && bun run sync && bun run build && bun run build-content && bun run parse",
"deploy-v2": "bun run deploy-v3 && bun ./tools/v2.js",
"build": "vite build",
"build-content": "bun run build-tooling && bun ./tools/content.js",
"build-tooling": "tsc --project ./tooling.tsconfig.json",
"watch": "vite build --watch",
"sync": "bun run build-tooling && bun ./tools/syncConfig.js",
"parse": "bun ./tools/parse.js",
"clean": "bunx rimraf ./dist/",
"dev": "bun run sync && bun run watch",
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --fix",
"lint:check": "eslint \"src/**/*.ts\" \"tests/**/*.ts\"",
"format": "prettier --write --no-error-on-unmatched-pattern \"src/**/*.{ts,json}\" \"tests/**/*.ts\" \"tools/*.ts\"",
"format:check": "prettier --check --no-error-on-unmatched-pattern \"src/**/*.{ts,json}\" \"tests/**/*.ts\" \"tools/*.ts\"",
"test": "bun test tests/unit",
"test:e2e": "bun run deploy-v3 && bun x playwright test",
"type-check": "tsc --noEmit",
"validate": "bun run type-check && bun run lint:check && bun run test",
"package": "bun ./tools/package.js",
"prepare": "bun run build-tooling",
"clean:all": "bunx rimraf ./dist/ ./artifacts/ ./test-results/ ./playwright-report/",
"verify": "bun run build-tooling && bun ./tools/verifyBuild.js"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.56.0",
"@types/bun": "^1.3.6",
"@types/chrome": "^0.2.6",
"@types/node": "^26.2.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"esbuild": "^0.28.2",
"eslint": "^10.8.1",
"prettier": "^3.9.6",
"rimraf": "^6.1.3",
"sass": "^1.102.0",
"typescript": "^6.0.3",
"vite": "^8.2.1"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"authors": [
{
"name": "bQuery contributors",
"email": "info@josunlp.de"
}
],
"description": "Inspect bQuery apps: component tree, signals, stores, and the reactive timeline over the stable devtools bridge protocol (v1).",
"homepage": "https://github.com/bQuery/devtools-extension",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bQuery/devtools-extension.git"
},
"bugs": {
"url": "https://github.com/bQuery/devtools-extension/issues"
},
"dependencies": {
"@bquery/bquery": "^1.16.0"
}
}