@caiquecamargo/vite-plugin-netlify-cms 0.0.11 → 0.0.13

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.
@@ -64,6 +64,7 @@ export interface ListWidget extends BaseCollectionField {
64
64
  label_singular?: string;
65
65
  field?: CollectionField;
66
66
  fields?: CollectionField[];
67
+ types?: ObjectWidget[];
67
68
  max?: number;
68
69
  min?: number;
69
70
  add_to_top?: boolean;
package/package.json CHANGED
@@ -2,19 +2,17 @@
2
2
  "author": "Caique de Camargo",
3
3
  "devDependencies": {
4
4
  "@rollup/plugin-typescript": "^11.0.0",
5
- "@types/node": "^18.11.17",
6
- "@vitest/coverage-c8": "^0.26.3",
7
- "acorn": "^8.8.1",
8
- "config-file-ts": "^0.2.4",
9
- "happy-dom": "^8.1.3",
10
- "nodemon": "^2.0.20",
5
+ "@types/node": "^18.15.5",
6
+ "@vitest/coverage-c8": "^0.29.7",
7
+ "happy-dom": "^8.9.0",
8
+ "nodemon": "^2.0.22",
11
9
  "ts-node": "^10.9.1",
12
- "tslib": "^2.4.1",
10
+ "tslib": "^2.5.0",
13
11
  "ttypescript": "^1.5.15",
14
- "typescript": "^4.9.4",
15
- "typia": "^3.4.18",
16
- "vite": "^4.0.3",
17
- "vitest": "^0.26.2",
12
+ "typescript": "^4.9.5",
13
+ "typia": "^3.6.9",
14
+ "vite": "^4.2.1",
15
+ "vitest": "^0.29.7",
18
16
  "yaml": "^2.2.1"
19
17
  },
20
18
  "peerDependencies": {
@@ -44,18 +42,17 @@
44
42
  "type": "git",
45
43
  "url": "https://github.com/caiquecamargo/vite-plugin-netlify-cms.git"
46
44
  },
45
+ "type": "module",
46
+ "types": "./dist/index.d.ts",
47
+ "version": "0.0.13",
47
48
  "scripts": {
48
49
  "build": "vite build",
49
50
  "dev": "npx nodemon ./src/demo.ts",
50
51
  "package": "pnpm build",
51
- "prepublishOnly": "pnpm package",
52
52
  "pub": "pnpm publish",
53
53
  "serve": "vite preview --host 0.0.0.0",
54
54
  "test": "vitest run",
55
55
  "test:coverage": "vitest --coverage",
56
56
  "test:watch": "vitest watch"
57
- },
58
- "type": "module",
59
- "types": "./dist/index.d.ts",
60
- "version": "0.0.11"
61
- }
57
+ }
58
+ }