cellux 0.0.1

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 ADDED
@@ -0,0 +1,11 @@
1
+ # Cellux
2
+
3
+ A TypeScript-native data grid library.
4
+
5
+ **Status**: Early development - claiming package name.
6
+
7
+ More information coming soon.
8
+
9
+ ## License
10
+
11
+ MIT
package/files.zip ADDED
Binary file
package/index.d.ts ADDED
@@ -0,0 +1,4 @@
1
+ // Cellux TypeScript definitions
2
+ // Coming soon...
3
+
4
+ export {};
package/index.js ADDED
@@ -0,0 +1,4 @@
1
+ // Cellux - A TypeScript-native data grid library
2
+ // Coming soon...
3
+
4
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "cellux",
3
+ "version": "0.0.1",
4
+ "description": "A TypeScript-native data grid library",
5
+ "main": "index.js",
6
+ "types": "index.d.ts",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "keywords": [
11
+ "grid",
12
+ "data-grid",
13
+ "typescript",
14
+ "table"
15
+ ],
16
+ "author": "Mike",
17
+ "license": "MIT",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/yourusername/cellux.git"
21
+ }
22
+ }