@uinstinct/svelte-wheel-picker 0.1.31 → 0.1.32

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 +15 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uinstinct/svelte-wheel-picker",
3
- "version": "0.1.31",
3
+ "version": "0.1.32",
4
4
  "type": "module",
5
5
  "description": "iOS-style wheel picker for Svelte 5 with inertia scrolling, infinite loop, and keyboard navigation",
6
6
  "license": "MIT",
@@ -35,6 +35,19 @@
35
35
  "peerDependencies": {
36
36
  "svelte": "^5.0.0"
37
37
  },
38
+ "scripts": {
39
+ "dev": "vite dev",
40
+ "build": "vite build",
41
+ "package": "svelte-package && rm -rf dist/__tests__ && rm -f dist/*.test.js dist/*.test.d.ts && publint",
42
+ "prepack": "npm run package",
43
+ "test": "PLAYWRIGHT_BROWSERS_PATH=.playwright vitest run",
44
+ "test:watch": "PLAYWRIGHT_BROWSERS_PATH=.playwright vitest",
45
+ "test:e2e": "PLAYWRIGHT_BROWSERS_PATH=.playwright npx playwright test --config=playwright.config.ts",
46
+ "lint": "eslint .",
47
+ "format": "prettier --write .",
48
+ "registry:build": "shadcn-svelte registry build",
49
+ "agent": "safehouse --enable=playwright-chrome claude --dangerously-skip-permissions"
50
+ },
38
51
  "devDependencies": {
39
52
  "@eslint/js": "10.0.1",
40
53
  "@playwright/test": "1.58.2",
@@ -58,17 +71,5 @@
58
71
  "vite": "8.0.1",
59
72
  "vitest": "4.1.0",
60
73
  "vitest-browser-svelte": "2.1.0"
61
- },
62
- "scripts": {
63
- "dev": "vite dev",
64
- "build": "vite build",
65
- "package": "svelte-package && rm -rf dist/__tests__ && rm -f dist/*.test.js dist/*.test.d.ts && publint",
66
- "test": "PLAYWRIGHT_BROWSERS_PATH=.playwright vitest run",
67
- "test:watch": "PLAYWRIGHT_BROWSERS_PATH=.playwright vitest",
68
- "test:e2e": "PLAYWRIGHT_BROWSERS_PATH=.playwright npx playwright test --config=playwright.config.ts",
69
- "lint": "eslint .",
70
- "format": "prettier --write .",
71
- "registry:build": "shadcn-svelte registry build",
72
- "agent": "safehouse --enable=playwright-chrome claude --dangerously-skip-permissions"
73
74
  }
74
- }
75
+ }