@pixpilot/shadcn-kanban 0.0.0 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +51 -54
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pixpilot/shadcn-kanban",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "
|
|
5
|
-
"packageManager": "pnpm@10.33.0",
|
|
4
|
+
"version": "1.0.0",
|
|
6
5
|
"description": "Accessible drag-and-drop Kanban board built with shadcn/ui and dnd-kit.",
|
|
7
6
|
"author": "m.doaie <m.doaie@hotmail.com>",
|
|
8
7
|
"license": "MIT",
|
|
@@ -24,25 +23,58 @@
|
|
|
24
23
|
"react"
|
|
25
24
|
],
|
|
26
25
|
"sideEffects": false,
|
|
27
|
-
"exports":
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"require": "./dist/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
28
33
|
"files": [
|
|
29
34
|
"dist"
|
|
30
35
|
],
|
|
31
36
|
"publishConfig": {
|
|
32
|
-
"access": "public"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
"
|
|
41
|
-
"
|
|
42
|
-
"
|
|
37
|
+
"access": "public"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"react": "^18 || ^19",
|
|
41
|
+
"react-dom": "^18 || ^19"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@dnd-kit/core": "^6.3.1",
|
|
45
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
46
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
47
|
+
"@tanstack/react-virtual": "^3.13.23",
|
|
48
|
+
"lucide-react": "1.26.0",
|
|
49
|
+
"@pixpilot/shadcn-ui": "3.17.5"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@storybook/react": "^8.6.18",
|
|
53
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
54
|
+
"@testing-library/react": "^16.3.2",
|
|
55
|
+
"@types/node": "^22.19.17",
|
|
56
|
+
"@types/react": "^19.2.14",
|
|
57
|
+
"@types/react-dom": "^19.2.3",
|
|
58
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
59
|
+
"@vitest/ui": "^3.2.4",
|
|
60
|
+
"eslint": "^9.39.4",
|
|
61
|
+
"jsdom": "^27.4.0",
|
|
62
|
+
"postcss": "^8.5.14",
|
|
63
|
+
"react": "19.2.8",
|
|
64
|
+
"react-dom": "19.2.8",
|
|
65
|
+
"tailwindcss": "^4.2.2",
|
|
66
|
+
"tsdown": "^0.15.12",
|
|
67
|
+
"typescript": "^5.9.3",
|
|
68
|
+
"typescript-eslint": "^8.58.1",
|
|
69
|
+
"vitest": "^3.2.4",
|
|
70
|
+
"@internal/eslint-config": "0.3.0",
|
|
71
|
+
"@internal/prettier-config": "0.0.1",
|
|
72
|
+
"@internal/tsconfig": "0.1.0",
|
|
73
|
+
"@internal/tsdown-config": "0.1.0",
|
|
74
|
+
"@internal/vitest-config": "0.1.0"
|
|
43
75
|
},
|
|
76
|
+
"prettier": "@internal/prettier-config",
|
|
44
77
|
"scripts": {
|
|
45
|
-
"prepublishOnly": "pnpm run clean && pnpm run build",
|
|
46
78
|
"clean": "git clean -xdf .cache .turbo dist",
|
|
47
79
|
"clean:all": "pnpm clean && git clean -xdf node_modules",
|
|
48
80
|
"build": "tsdown",
|
|
@@ -56,42 +88,7 @@
|
|
|
56
88
|
"lint": "eslint",
|
|
57
89
|
"format": "prettier --check . --ignore-path ../../.gitignore --ignore-path ../../.prettierignore"
|
|
58
90
|
},
|
|
59
|
-
"
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
"dependencies": {
|
|
64
|
-
"@dnd-kit/core": "^6.3.1",
|
|
65
|
-
"@dnd-kit/sortable": "^10.0.0",
|
|
66
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
67
|
-
"@pixpilot/shadcn-ui": "workspace:*",
|
|
68
|
-
"@tanstack/react-virtual": "^3.13.23",
|
|
69
|
-
"lucide-react": "catalog:prod"
|
|
70
|
-
},
|
|
71
|
-
"devDependencies": {
|
|
72
|
-
"@internal/eslint-config": "workspace:*",
|
|
73
|
-
"@internal/prettier-config": "workspace:*",
|
|
74
|
-
"@internal/tsconfig": "workspace:*",
|
|
75
|
-
"@internal/tsdown-config": "workspace:*",
|
|
76
|
-
"@internal/vitest-config": "workspace:*",
|
|
77
|
-
"@storybook/react": "catalog:dev",
|
|
78
|
-
"@testing-library/jest-dom": "catalog:dev",
|
|
79
|
-
"@testing-library/react": "catalog:dev",
|
|
80
|
-
"@types/node": "catalog:dev",
|
|
81
|
-
"@types/react": "catalog:dev",
|
|
82
|
-
"@types/react-dom": "catalog:dev",
|
|
83
|
-
"@vitest/coverage-v8": "catalog:dev",
|
|
84
|
-
"@vitest/ui": "catalog:dev",
|
|
85
|
-
"eslint": "catalog:dev",
|
|
86
|
-
"jsdom": "catalog:dev",
|
|
87
|
-
"postcss": "catalog:dev",
|
|
88
|
-
"react": "catalog:prod",
|
|
89
|
-
"react-dom": "catalog:prod",
|
|
90
|
-
"tailwindcss": "catalog:dev",
|
|
91
|
-
"tsdown": "catalog:dev",
|
|
92
|
-
"typescript": "catalog:dev",
|
|
93
|
-
"typescript-eslint": "catalog:dev",
|
|
94
|
-
"vitest": "catalog:dev"
|
|
95
|
-
},
|
|
96
|
-
"prettier": "@internal/prettier-config"
|
|
97
|
-
}
|
|
91
|
+
"main": "./dist/index.cjs",
|
|
92
|
+
"module": "./dist/index.js",
|
|
93
|
+
"types": "./dist/index.d.ts"
|
|
94
|
+
}
|