-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.46 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.46 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
{
"name": "bucketline",
"version": "1.0.0",
"description": "Visual label management for Linear — drag issues between label buckets on an infinite canvas",
"main": "./out/main/index.js",
"author": "Jordan Tryon",
"license": "MIT",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"format": "prettier --write .",
"lint": "eslint --cache .",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "npm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "npm run build && electron-builder --dir",
"build:win": "npm run build && electron-builder --win --publish never",
"build:mac": "npm run build && electron-builder --mac --publish never",
"build:linux": "npm run build && electron-builder --linux --publish never"
},
"dependencies": {
"@dnd-kit/core": "6.3.1",
"@dnd-kit/sortable": "10.0.0",
"@dnd-kit/utilities": "3.2.2",
"@electron-toolkit/preload": "3.0.2",
"@electron-toolkit/utils": "4.0.0",
"@linear/sdk": "86.0.0",
"electron-store": "11.0.2",
"electron-updater": "6.8.3",
"react-markdown": "10.1.0",
"react-zoom-pan-pinch": "4.0.3",
"zustand": "5.0.13"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "3.0.0",
"@electron-toolkit/eslint-config-ts": "3.1.0",
"@electron-toolkit/tsconfig": "2.0.0",
"@playwright/test": "1.60.0",
"@tailwindcss/vite": "4.3.0",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/node": "22.19.19",
"@types/react": "19.2.15",
"@types/react-dom": "19.2.3",
"@vitejs/plugin-react": "5.2.0",
"@vitest/coverage-v8": "4.1.7",
"autoprefixer": "10.5.0",
"electron": "39.8.10",
"electron-builder": "26.8.1",
"electron-vite": "5.0.0",
"eslint": "9.39.4",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.4.26",
"globals": "17.6.0",
"jsdom": "29.1.1",
"postcss": "8.5.15",
"prettier": "3.8.3",
"react": "19.2.6",
"react-dom": "19.2.6",
"tailwindcss": "4.3.0",
"typescript": "5.9.3",
"vite": "7.3.3"
}
}