@ucdjs/ucd-store 0.0.1 → 1.0.1-beta.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ucdjs/ucd-store",
3
- "version": "0.0.1",
3
+ "version": "1.0.1-beta.1",
4
4
  "type": "module",
5
5
  "author": {
6
6
  "name": "Lucas Nørgård",
@@ -17,32 +17,55 @@
17
17
  "bugs": {
18
18
  "url": "https://github.com/ucdjs/ucd/issues"
19
19
  },
20
+ "imports": {
21
+ "#internal-pkg:test-utils/*": "./test/helpers/*.ts"
22
+ },
20
23
  "exports": {
21
- ".": "./dist/index.js",
24
+ ".": "./dist/index.mjs",
22
25
  "./package.json": "./package.json"
23
26
  },
24
- "main": "./dist/index.js",
25
- "module": "./dist/index.js",
26
- "types": "./dist/index.d.ts",
27
+ "types": "./dist/index.d.mts",
27
28
  "files": [
28
29
  "dist"
29
30
  ],
31
+ "engines": {
32
+ "node": ">=22.18"
33
+ },
34
+ "dependencies": {
35
+ "@luxass/utils": "2.7.3",
36
+ "@unicode-utils/core": "0.12.0-beta.19",
37
+ "defu": "6.1.4",
38
+ "zod": "4.3.6",
39
+ "@ucdjs-internal/shared": "0.1.1-beta.1",
40
+ "@ucdjs/client": "0.1.1-beta.1",
41
+ "@ucdjs/fs-bridge": "0.1.1-beta.1",
42
+ "@ucdjs/lockfile": "0.1.1-beta.1",
43
+ "@ucdjs/env": "0.1.1-beta.1",
44
+ "@ucdjs/path-utils": "0.1.1-beta.1",
45
+ "@ucdjs/schemas": "0.1.1-beta.1"
46
+ },
30
47
  "devDependencies": {
31
- "@luxass/eslint-config": "^4.18.1",
32
- "eslint": "^9.27.0",
33
- "publint": "^0.3.12",
34
- "tsdown": "^0.12.5",
35
- "typescript": "^5.8.3",
36
- "vitest-testdirs": "^4.0.0"
48
+ "@luxass/eslint-config": "7.2.0",
49
+ "eslint": "10.0.0",
50
+ "publint": "0.3.17",
51
+ "tsdown": "0.20.3",
52
+ "tsx": "4.21.0",
53
+ "typescript": "5.9.3",
54
+ "vitest-testdirs": "4.4.2",
55
+ "@ucdjs-tooling/tsdown-config": "1.0.0",
56
+ "@ucdjs-tooling/tsconfig": "1.0.0"
37
57
  },
38
58
  "publishConfig": {
39
59
  "access": "public"
40
60
  },
41
61
  "scripts": {
42
- "build": "tsdown",
62
+ "build": "tsdown --tsconfig=./tsconfig.build.json",
43
63
  "dev": "tsdown --watch",
44
64
  "clean": "git clean -xdf dist node_modules",
45
65
  "lint": "eslint .",
46
- "typecheck": "tsc --noEmit"
66
+ "typecheck": "tsc --noEmit -p tsconfig.build.json",
67
+ "playground:http": "tsx --tsconfig=./tsconfig.json ./playgrounds/http-playground.ts",
68
+ "playground:node": "tsx --tsconfig=./tsconfig.json ./playgrounds/node-playground.ts",
69
+ "playground:memory": "tsx --tsconfig=./tsconfig.json ./playgrounds/memory-playground.ts"
47
70
  }
48
71
  }
package/dist/index.d.ts DELETED
@@ -1,4 +0,0 @@
1
- //#region src/index.d.ts
2
- declare function hello(): void;
3
- //#endregion
4
- export { hello };
package/dist/index.js DELETED
@@ -1,7 +0,0 @@
1
- //#region src/index.ts
2
- function hello() {
3
- console.log("Hello from utils!");
4
- }
5
-
6
- //#endregion
7
- export { hello };