-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.97 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.97 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
{
"name": "@ossrandom/lane",
"version": "0.3.0",
"description": "Lane — a personal kanban tracker that mounts on top of your GitLab account, distributed as a React component.",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/RandomCodeSpace/lane.git"
},
"homepage": "https://github.com/RandomCodeSpace/lane#readme",
"bugs": {
"url": "https://github.com/RandomCodeSpace/lane/issues"
},
"publishConfig": {
"access": "public"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/tracker.css"
},
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "vite build && tsc -p tsconfig.build.json",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"dependencies": {
"@dnd-kit/core": "^6.3.0",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"idb": "^8.0.0",
"react-markdown": "^10.0.0",
"remark-gfm": "^4.0.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@axe-core/playwright": "^4.11.3",
"@playwright/test": "^1.60.0",
"@radix-ui/colors": "^3.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.6.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.5.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.0.0",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.9.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"typescript": "^5.9.0",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.5.0",
"vitest": "^3.2.0"
}
}