@nu-grid/nuxt 0.1.1 → 0.1.3
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/README.md +0 -0
- package/dist/module.json +1 -1
- package/package.json +50 -48
package/README.md
CHANGED
|
File without changes
|
package/dist/module.json
CHANGED
package/package.json
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nu-grid/nuxt",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"packageManager": "pnpm@10.21.0",
|
|
4
|
+
"version": "0.1.3",
|
|
6
5
|
"description": "A powerful data grid component for Nuxt with virtualization, cell editing, and TanStack Table integration",
|
|
7
6
|
"license": "MIT",
|
|
8
7
|
"homepage": "https://www.nu-grid.dev",
|
|
@@ -11,7 +10,11 @@
|
|
|
11
10
|
".": {
|
|
12
11
|
"types": "./dist/types.d.mts",
|
|
13
12
|
"import": "./dist/module.mjs",
|
|
14
|
-
"style": "./
|
|
13
|
+
"style": "./dist/runtime/index.css"
|
|
14
|
+
},
|
|
15
|
+
"./css": {
|
|
16
|
+
"style": "./dist/runtime/index.css",
|
|
17
|
+
"default": "./dist/runtime/index.css"
|
|
15
18
|
},
|
|
16
19
|
"./types": {
|
|
17
20
|
"types": "./dist/runtime/types/index.d.ts",
|
|
@@ -26,7 +29,7 @@
|
|
|
26
29
|
"import": "./dist/runtime/types/cells.js"
|
|
27
30
|
}
|
|
28
31
|
},
|
|
29
|
-
"style": "./
|
|
32
|
+
"style": "./dist/runtime/index.css",
|
|
30
33
|
"main": "./dist/module.mjs",
|
|
31
34
|
"typesVersions": {
|
|
32
35
|
"*": {
|
|
@@ -47,9 +50,50 @@
|
|
|
47
50
|
"files": [
|
|
48
51
|
"dist"
|
|
49
52
|
],
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@nuxt/ui": "^4.0.0",
|
|
55
|
+
"@vueuse/nuxt": "^13.0.0"
|
|
56
|
+
},
|
|
57
|
+
"peerDependenciesMeta": {
|
|
58
|
+
"write-excel-file": {
|
|
59
|
+
"optional": true
|
|
60
|
+
}
|
|
61
|
+
},
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@nuxt/kit": "^4.2.1",
|
|
64
|
+
"@tanstack/vue-table": "^8.21.3",
|
|
65
|
+
"defu": "^6.1.4",
|
|
66
|
+
"tailwind-scrollbar": "^4.0.2"
|
|
67
|
+
},
|
|
68
|
+
"optionalDependencies": {
|
|
69
|
+
"write-excel-file": "^2.3.10"
|
|
70
|
+
},
|
|
71
|
+
"devDependencies": {
|
|
72
|
+
"@antfu/eslint-config": "^6.2.0",
|
|
73
|
+
"@nuxt/devtools": "^3.1.0",
|
|
74
|
+
"@nuxt/eslint": "^1.11.0",
|
|
75
|
+
"@nuxt/module-builder": "^1.0.2",
|
|
76
|
+
"@nuxt/schema": "^4.2.1",
|
|
77
|
+
"@nuxt/test-utils": "^3.20.1",
|
|
78
|
+
"@nuxt/ui": "^4.2.1",
|
|
79
|
+
"@playwright/test": "^1.57.0",
|
|
80
|
+
"@types/node": "latest",
|
|
81
|
+
"@vitest/ui": "^4.0.14",
|
|
82
|
+
"@vue/test-utils": "^2.4.6",
|
|
83
|
+
"@vueuse/nuxt": "^14.1.0",
|
|
84
|
+
"eslint": "^9.39.1",
|
|
85
|
+
"eslint-config-prettier": "^10.1.8",
|
|
86
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
87
|
+
"happy-dom": "^20.0.11",
|
|
88
|
+
"nuxt": "^4.2.1",
|
|
89
|
+
"prettier": "^3.7.4",
|
|
90
|
+
"prettier-plugin-classnames": "^0.8.6",
|
|
91
|
+
"typescript": "^5.9.3",
|
|
92
|
+
"vitest": "^4.0.14",
|
|
93
|
+
"vue-tsc": "^3.1.4"
|
|
94
|
+
},
|
|
50
95
|
"scripts": {
|
|
51
96
|
"build": "pnpm run dev:prepare && pnpm run prepack",
|
|
52
|
-
"prepack": "nuxt-module-build build",
|
|
53
97
|
"dev": "pnpm run dev:prepare && nuxi dev playgrounds/nuxt",
|
|
54
98
|
"dev:build": "nuxi build playgrounds/nuxt",
|
|
55
99
|
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playgrounds/nuxt",
|
|
@@ -71,47 +115,5 @@
|
|
|
71
115
|
"typecheck:tests": "vue-tsc --noEmit -p tsconfig.test.json --skipLibCheck 2>&1 | grep -E 'test/.*\\.ts'",
|
|
72
116
|
"netlify-build": "pnpm run dev:prepare && pnpm run prepack && pnpm run docs:build",
|
|
73
117
|
"clean": "rm -rf node_modules dist .nuxt .output coverage playgrounds/nuxt/.nuxt playgrounds/nuxt/.output playgrounds/nuxt/node_modules docs/.nuxt docs/.output docs/node_modules"
|
|
74
|
-
},
|
|
75
|
-
"peerDependencies": {
|
|
76
|
-
"@nuxt/ui": "^4.0.0",
|
|
77
|
-
"@vueuse/nuxt": "^13.0.0"
|
|
78
|
-
},
|
|
79
|
-
"peerDependenciesMeta": {
|
|
80
|
-
"write-excel-file": {
|
|
81
|
-
"optional": true
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
"dependencies": {
|
|
85
|
-
"@nuxt/kit": "catalog:",
|
|
86
|
-
"@tanstack/vue-table": "catalog:",
|
|
87
|
-
"defu": "catalog:",
|
|
88
|
-
"tailwind-scrollbar": "catalog:"
|
|
89
|
-
},
|
|
90
|
-
"optionalDependencies": {
|
|
91
|
-
"write-excel-file": "^2.3.10"
|
|
92
|
-
},
|
|
93
|
-
"devDependencies": {
|
|
94
|
-
"@antfu/eslint-config": "catalog:",
|
|
95
|
-
"@nuxt/devtools": "catalog:",
|
|
96
|
-
"@nuxt/eslint": "catalog:",
|
|
97
|
-
"@nuxt/module-builder": "catalog:",
|
|
98
|
-
"@nuxt/schema": "catalog:",
|
|
99
|
-
"@nuxt/test-utils": "catalog:",
|
|
100
|
-
"@nuxt/ui": "catalog:",
|
|
101
|
-
"@playwright/test": "catalog:",
|
|
102
|
-
"@types/node": "catalog:",
|
|
103
|
-
"@vitest/ui": "catalog:",
|
|
104
|
-
"@vue/test-utils": "catalog:",
|
|
105
|
-
"@vueuse/nuxt": "catalog:",
|
|
106
|
-
"eslint": "catalog:",
|
|
107
|
-
"eslint-config-prettier": "catalog:",
|
|
108
|
-
"eslint-plugin-prettier": "catalog:",
|
|
109
|
-
"happy-dom": "catalog:",
|
|
110
|
-
"nuxt": "catalog:",
|
|
111
|
-
"prettier": "catalog:",
|
|
112
|
-
"prettier-plugin-classnames": "catalog:",
|
|
113
|
-
"typescript": "catalog:",
|
|
114
|
-
"vitest": "catalog:",
|
|
115
|
-
"vue-tsc": "catalog:"
|
|
116
118
|
}
|
|
117
|
-
}
|
|
119
|
+
}
|