obsidian-e2e 0.0.0-next.0 → 0.1.0

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 +22 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "obsidian-e2e",
3
- "version": "0.0.0-next.0",
3
+ "version": "0.1.0",
4
4
  "description": "Vitest-first end-to-end test utilities for Obsidian plugins.",
5
5
  "homepage": "https://github.com/chhoumann/obsidian-e2e#readme",
6
6
  "bugs": {
@@ -35,11 +35,30 @@
35
35
  },
36
36
  "./package.json": "./package.json"
37
37
  },
38
+ "devDependencies": {
39
+ "@changesets/cli": "^2.30.0",
40
+ "@types/node": "^25.3.5",
41
+ "@typescript/native-preview": "7.0.0-dev.20260309.1",
42
+ "bumpp": "^10.4.1",
43
+ "typescript": "^5.9.3",
44
+ "vite-plus": "latest",
45
+ "vitest": "npm:@voidzero-dev/vite-plus-test@latest"
46
+ },
38
47
  "peerDependencies": {
39
48
  "vite-plus": "^0.1.11"
40
49
  },
41
50
  "engines": {
42
51
  "node": "^20.19.0 || >=22.12.0"
43
52
  },
44
- "packageManager": "pnpm@10.32.1"
45
- }
53
+ "scripts": {
54
+ "build": "vp pack",
55
+ "check": "vp check",
56
+ "changeset": "changeset",
57
+ "dev": "vp pack --watch",
58
+ "release": "changeset publish",
59
+ "release:check": "vp check && vp test && vp pack",
60
+ "test": "vp test",
61
+ "typecheck": "tsc --noEmit",
62
+ "version-packages": "changeset version"
63
+ }
64
+ }