@uinstinct/svelte-wheel-picker 0.1.30 → 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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +15 -14
package/README.md CHANGED
@@ -42,7 +42,7 @@ yarn add @uinstinct/svelte-wheel-picker
42
42
  ### shadcn-svelte
43
43
 
44
44
  ```bash
45
- npx shadcn-svelte@latest add https://svelte-wheel-spinner.netlify.app/r/wheel-picker.json
45
+ npx shadcn-svelte@latest add https://svelte-wheel-picker.netlify.app/r/wheel-picker.json
46
46
  ```
47
47
 
48
48
  This copies the component source directly into your project under `src/lib/components/ui/wheel-picker/`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uinstinct/svelte-wheel-picker",
3
- "version": "0.1.30",
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
+ }