@resolid/cache-file 0.1.1 → 1.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.
Files changed (2) hide show
  1. package/dist/index.d.mts +1 -1
  2. package/package.json +23 -25
package/dist/index.d.mts CHANGED
@@ -1,4 +1,4 @@
1
- import { CacheStore } from "@resolid/cache/types";
1
+ import { CacheStore } from "@resolid/cache/stores";
2
2
 
3
3
  //#region src/index.d.ts
4
4
  declare class FileCache implements CacheStore {
package/package.json CHANGED
@@ -1,56 +1,54 @@
1
1
  {
2
2
  "name": "@resolid/cache-file",
3
- "version": "0.1.1",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "description": "File Cache store for @resolid/cache",
6
6
  "keywords": [
7
- "resolid",
8
7
  "cache",
9
8
  "cache manager",
10
- "file"
9
+ "file",
10
+ "resolid"
11
11
  ],
12
12
  "homepage": "https://www.resolid.tech",
13
- "repository": {
14
- "type": "git",
15
- "url": "git+https://github.com/resolid/framework.git",
16
- "directory": "packages/cache-file"
17
- },
18
13
  "license": "MIT",
19
14
  "author": {
20
15
  "name": "Huijie Wei",
21
16
  "email": "hello@resolid.tech"
22
17
  },
23
- "sideEffects": false,
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/resolid/framework.git",
21
+ "directory": "packages/cache-file"
22
+ },
23
+ "files": [
24
+ "dist"
25
+ ],
24
26
  "type": "module",
27
+ "sideEffects": false,
28
+ "types": "./dist/index.d.mts",
25
29
  "exports": {
26
30
  ".": {
27
31
  "types": "./dist/index.d.mts",
28
32
  "import": "./dist/index.mjs"
29
- }
33
+ },
34
+ "./package.json": "./package.json"
35
+ },
36
+ "publishConfig": {
37
+ "access": "public",
38
+ "provenance": true
30
39
  },
31
- "main": "./dist/index.mjs",
32
- "types": "./dist/index.d.mts",
33
- "files": [
34
- "dist"
35
- ],
36
- "dependencies": {},
37
40
  "devDependencies": {
38
- "tsdown": "^0.16.3",
39
- "typescript": "^5.9.3"
41
+ "tsdown": "^0.21.5"
40
42
  },
41
43
  "peerDependencies": {
42
- "@resolid/cache": "^0.2.0"
44
+ "@resolid/cache": "^1.0.1"
43
45
  },
44
46
  "engines": {
45
- "node": "^20.19.0 || ^22.13.0 || >=24"
46
- },
47
- "publishConfig": {
48
- "access": "public",
49
- "provenance": true
47
+ "node": "^22.13.0 || >=24"
50
48
  },
51
49
  "scripts": {
52
50
  "build": "tsdown",
53
- "lint": "eslint .",
51
+ "lint": "oxlint",
54
52
  "test": "vitest run",
55
53
  "typecheck": "tsc --noEmit"
56
54
  }