minimem 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,2 @@
1
+ # simplemem
2
+ Your filesystem is now your memory system!
@@ -0,0 +1,2 @@
1
+
2
+ export { }
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+
3
+ // src/index.ts
4
+ console.log("MiniMem Library");
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["// Placeholder for src/index.ts\nconsole.log(\"MiniMem Library\");\n"],"mappings":";;;AACA,QAAQ,IAAI,iBAAiB;","names":[]}
package/dist/index.mjs ADDED
@@ -0,0 +1,3 @@
1
+ // src/index.ts
2
+ console.log("MiniMem Library");
3
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../src/index.ts"],"sourcesContent":["// Placeholder for src/index.ts\nconsole.log(\"MiniMem Library\");\n"],"mappings":";AACA,QAAQ,IAAI,iBAAiB;","names":[]}
package/package.json ADDED
@@ -0,0 +1,35 @@
1
+ {
2
+ "name": "minimem",
3
+ "version": "0.0.1",
4
+ "description": "A lightweight memory management library",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js"
12
+ }
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "build": "tsup",
19
+ "dev": "tsup --watch",
20
+ "test": "vitest",
21
+ "prepublishOnly": "npm run build"
22
+ },
23
+ "keywords": [
24
+ "memory",
25
+ "cache",
26
+ "storage"
27
+ ],
28
+ "author": "Alex Ngai",
29
+ "license": "MIT",
30
+ "devDependencies": {
31
+ "tsup": "^8.0.0",
32
+ "typescript": "^5.0.0",
33
+ "vitest": "^2.0.0"
34
+ }
35
+ }