@choiceopen/atomemo-plugin-schema 0.2.3 → 0.2.4

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 (1) hide show
  1. package/package.json +10 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@choiceopen/atomemo-plugin-schema",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Schema for developing Choiceform atomemo plugins",
5
5
  "homepage": "https://github.com/choice-open/atomemo-plugin-schema#readme",
6
6
  "bugs": {
@@ -14,8 +14,14 @@
14
14
  "author": "江志强 <zhiqiang.jiang@choiceform.com>",
15
15
  "type": "module",
16
16
  "exports": {
17
- "./schemas": "./dist/schemas.mjs",
18
- "./types": "./dist/types.mjs",
17
+ "./schemas": {
18
+ "development": "./src/schemas.ts",
19
+ "default": "./dist/schemas.mjs"
20
+ },
21
+ "./types": {
22
+ "development": "./src/types.ts",
23
+ "default": "./dist/types.mjs"
24
+ },
19
25
  "./package.json": "./package.json"
20
26
  },
21
27
  "types": "./dist/index.d.ts",
@@ -26,7 +32,7 @@
26
32
  "build": "tsdown",
27
33
  "check": "biome check --write",
28
34
  "dev": "tsdown --watch",
29
- "preversion": "bun run build",
35
+ "preversion": "tsdown --clean",
30
36
  "test": "bun test --dots",
31
37
  "typecheck": "tsc --noEmit"
32
38
  },