-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.91 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.91 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "bugdrop",
"version": "0.0.0-development",
"license": "MIT",
"description": "In-app feedback → GitHub Issues. Screenshots, annotations, the works.",
"type": "module",
"main": "./public/widget.js",
"types": "./src/widget/public-api.d.ts",
"exports": {
".": {
"types": "./src/widget/public-api.d.ts",
"default": "./public/widget.js"
},
"./widget": {
"types": "./src/widget/public-api.d.ts",
"default": "./public/widget.js"
},
"./widget.js": {
"types": "./src/widget/public-api.d.ts",
"default": "./public/widget.js"
}
},
"files": [
"public/widget.js",
"public/widget.v*.js",
"src/widget/",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "wrangler dev --port 8787",
"build": "tsc",
"build:widget": "node scripts/build-widget.js",
"deploy": "wrangler deploy",
"render:board-gallery": "node scripts/render-board-gallery.mjs",
"social-proof:consent": "node scripts/social-proof-consent.mjs",
"verify:legacy-compat": "node scripts/verify-legacy-compat.mjs",
"release:plan": "node scripts/release/plan.mjs",
"release:live": "node scripts/release/live-release.mjs",
"test": "vitest run",
"test:protocol": "vitest run test/protocol/v1",
"test:cross-plane": "vitest run test/cross-plane",
"cross-plane:compare-public": "node scripts/cross-plane/compare-public-runs.mjs",
"protocol:check-fixtures": "node scripts/protocol/check-fixture-drift.mjs",
"test:release": "vitest run test/release",
"test:release-workflow": "vitest run test/release/git-observer.test.ts test/release/github-adapter.test.ts test/release/github-publication-adapter.test.ts test/release/cloudflare-adapter.test.ts test/release/cloudflare-client.test.ts test/release/cloudflare-capability-drill.test.ts test/release/live-release.test.ts test/release/workflow.test.ts && bash test/release-workflow-contract.test.sh",
"test:static-assets": "vitest run test/release/static-assets.test.ts",
"test:watch": "vitest",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"benchmark:screenshot": "npx playwright test --config benchmarks/playwright.config.ts",
"typecheck": "tsc --noEmit && tsc --project tsconfig.widget.json --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"knip": "knip",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:actions-node24": "node scripts/check-github-actions.mjs",
"check:security-analysis-workflows": "node scripts/check-security-analysis-workflows.mjs",
"check:workflow-permissions": "node scripts/check-workflow-permissions.mjs",
"validate": "npm run lint && npm run format:check && npm run typecheck && npm run test",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,md,css}": [
"prettier --write"
]
},
"overrides": {
"jsdom": {
"undici": "7.29.0"
},
"miniflare": {
"sharp": "0.35.2",
"undici": "7.29.0",
"ws": "8.21.0"
},
"wrangler": {
"esbuild": "0.28.1"
}
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20241127.0",
"@commitlint/cli": "^21.2.1",
"@commitlint/config-conventional": "^21.2.2",
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.62.1",
"@types/node": "^26.2.0",
"@types/pg": "8.23.1",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.1",
"eslint": "^10.8.0",
"globals": "^17.11.0",
"husky": "^9.1.7",
"jsdom": "^29.0.1",
"knip": "^6.32.0",
"lint-staged": "^17.3.0",
"miniflare": "4.20260603.0",
"prettier": "^3.9.6",
"typescript": "^5.7.2",
"typescript-eslint": "^8.65.0",
"vitest": "^4.1.11",
"wrangler": "4.98.0",
"yaml": "^2.9.0"
},
"dependencies": {
"hono": "^4.13.7",
"html-to-image": "^1.11.13",
"pg": "8.23.0"
}
}