|
1 | 1 | { |
2 | 2 | "name": "solid-number-flow", |
3 | 3 | "version": "0.3.3", |
4 | | - "description": "A SolidJS component to transition, format, and localize numbers. Forked from @barvian/number-flow.", |
5 | | - "license": "MIT", |
6 | 4 | "author": "Carlo Taleon", |
7 | | - "contributors": [ |
8 | | - { |
9 | | - "name": "Maxwell Barvian", |
10 | | - |
11 | | - "url": "https://barvian.me" |
12 | | - } |
13 | | - ], |
14 | 5 | "repository": { |
15 | 6 | "type": "git", |
16 | 7 | "url": "git+https://github.com/Blankeos/solid-number-flow.git" |
17 | 8 | }, |
18 | | - "homepage": "https://solid-number-flow.pages.dev", |
19 | | - "bugs": { |
20 | | - "url": "https://github.com/Blankeos/solid-number-flow/issues" |
21 | | - }, |
22 | | - "files": [ |
23 | | - "dist" |
24 | | - ], |
25 | | - "private": false, |
26 | | - "sideEffects": false, |
27 | | - "type": "module", |
28 | 9 | "main": "./dist/index.js", |
29 | 10 | "module": "./dist/index.js", |
30 | | - "types": "./dist/index.d.ts", |
31 | | - "browser": {}, |
32 | | - "exports": { |
33 | | - "solid": { |
34 | | - "development": "./dist/dev.jsx", |
35 | | - "import": "./dist/index.jsx" |
36 | | - }, |
37 | | - "development": { |
38 | | - "import": { |
39 | | - "types": "./dist/index.d.ts", |
40 | | - "default": "./dist/dev.js" |
41 | | - } |
42 | | - }, |
43 | | - "import": { |
44 | | - "types": "./dist/index.d.ts", |
45 | | - "default": "./dist/index.js" |
46 | | - } |
47 | | - }, |
48 | | - "typesVersions": {}, |
49 | | - "scripts": { |
50 | | - "dev": "vite serve dev", |
51 | | - "build": "tsup", |
52 | | - "build:site": "vite build dev", |
53 | | - "preview:site": "vite preview dev", |
54 | | - "test": "concurrently bun:test:*", |
55 | | - "test:client": "vitest", |
56 | | - "test:ssr": "bun run test:client --mode ssr", |
57 | | - "prepublishOnly": "bun run build", |
58 | | - "format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"", |
59 | | - "lint": "concurrently bun:lint:*", |
60 | | - "lint:code": "eslint --ignore-path .gitignore --max-warnings 0 src/**/*.{js,ts,tsx,jsx}", |
61 | | - "lint:types": "tsc --noEmit", |
62 | | - "update-deps": "bunx npm-check-updates --format group --interactive", |
63 | | - "ci": "bun run lint && bun run build", |
64 | | - "publish": "bun run lint && bun run build && changeset publish" |
65 | | - }, |
66 | | - "peerDependencies": { |
67 | | - "solid-js": "^1.6.0" |
68 | | - }, |
69 | 11 | "devDependencies": { |
70 | 12 | "@changesets/changelog-github": "^0.5.0", |
71 | 13 | "@changesets/cli": "^2.27.10", |
72 | 14 | "@kobalte/core": "^0.13.7", |
73 | 15 | "@tailwindcss/typography": "^0.5.15", |
74 | 16 | "@types/node": "^20.12.12", |
75 | | - "@typescript-eslint/eslint-plugin": "^7.9.0", |
76 | | - "@typescript-eslint/parser": "^7.9.0", |
| 17 | + "@typescript-eslint/eslint-plugin": "^8.19.1", |
| 18 | + "@typescript-eslint/parser": "^8.19.1", |
77 | 19 | "auto-changelog": "^2.5.0", |
78 | 20 | "autoprefixer": "^10.4.20", |
79 | 21 | "clsx": "^2.1.1", |
80 | 22 | "concurrently": "^8.2.2", |
81 | 23 | "esbuild": "^0.21.3", |
82 | 24 | "esbuild-plugin-solid": "^0.6.0", |
83 | | - "eslint": "^8.56.0", |
| 25 | + "eslint": "^9.18.0", |
84 | 26 | "eslint-plugin-eslint-comments": "^3.2.0", |
85 | 27 | "eslint-plugin-no-only-tests": "^3.3.0", |
| 28 | + "eslint-plugin-solid": "^0.14.5", |
86 | 29 | "jsdom": "^24.0.0", |
87 | 30 | "postcss": "^8.4.47", |
88 | 31 | "prettier": "3.3.3", |
89 | 32 | "prettier-plugin-tailwindcss": "^0.6.8", |
90 | 33 | "shiki": "^1.22.0", |
91 | 34 | "shikiji": "^0.10.2", |
92 | | - "solid-js": "^1.6.0", |
| 35 | + "solid-js": "^1.9.4", |
93 | 36 | "solid-marked": "^0.6.3", |
94 | 37 | "tailwindcss": "^3.4.14", |
95 | 38 | "tsup": "^8.3.0", |
|
102 | 45 | "vite-plugin-solid": "^2.10.2", |
103 | 46 | "vitest": "^1.6.0" |
104 | 47 | }, |
| 48 | + "peerDependencies": { |
| 49 | + "solid-js": "^1.9.4" |
| 50 | + }, |
| 51 | + "exports": { |
| 52 | + "solid": { |
| 53 | + "development": "./dist/dev.jsx", |
| 54 | + "import": "./dist/index.jsx" |
| 55 | + }, |
| 56 | + "development": { |
| 57 | + "import": { |
| 58 | + "types": "./dist/index.d.ts", |
| 59 | + "default": "./dist/dev.js" |
| 60 | + } |
| 61 | + }, |
| 62 | + "import": { |
| 63 | + "types": "./dist/index.d.ts", |
| 64 | + "default": "./dist/index.js" |
| 65 | + } |
| 66 | + }, |
| 67 | + "browser": {}, |
| 68 | + "bugs": { |
| 69 | + "url": "https://github.com/Blankeos/solid-number-flow/issues" |
| 70 | + }, |
| 71 | + "contributors": [ |
| 72 | + { |
| 73 | + "name": "Maxwell Barvian", |
| 74 | + |
| 75 | + "url": "https://barvian.me" |
| 76 | + } |
| 77 | + ], |
| 78 | + "description": "A SolidJS component to transition, format, and localize numbers. Forked from @barvian/number-flow.", |
| 79 | + "engines": { |
| 80 | + "node": ">=18" |
| 81 | + }, |
| 82 | + "files": [ |
| 83 | + "dist" |
| 84 | + ], |
| 85 | + "homepage": "https://solid-number-flow.pages.dev", |
105 | 86 | "keywords": [ |
106 | 87 | "solid", |
107 | 88 | "solid-js", |
|
114 | 95 | "number-animation", |
115 | 96 | "animated-number" |
116 | 97 | ], |
117 | | - "engines": { |
118 | | - "node": ">=18" |
| 98 | + "license": "MIT", |
| 99 | + "private": false, |
| 100 | + "scripts": { |
| 101 | + "dev": "vite serve dev", |
| 102 | + "build": "tsup", |
| 103 | + "build:site": "vite build dev", |
| 104 | + "preview:site": "vite preview dev", |
| 105 | + "test": "concurrently bun:test:*", |
| 106 | + "test:client": "vitest", |
| 107 | + "test:ssr": "bun run test:client --mode ssr", |
| 108 | + "prepublishOnly": "bun run build", |
| 109 | + "format": "prettier --ignore-path .gitignore -w \"src/**/*.{js,ts,json,css,tsx,jsx}\" \"dev/**/*.{js,ts,json,css,tsx,jsx}\"", |
| 110 | + "lint": "concurrently bun:lint:*", |
| 111 | + "lint:code": "eslint .", |
| 112 | + "lint:types": "tsc --noEmit", |
| 113 | + "update-deps": "bunx npm-check-updates --format group --interactive", |
| 114 | + "ci": "bun run lint && bun run build", |
| 115 | + "publish": "bun run lint && bun run build && changeset publish" |
119 | 116 | }, |
| 117 | + "sideEffects": false, |
| 118 | + "type": "module", |
| 119 | + "types": "./dist/index.d.ts", |
| 120 | + "typesVersions": {}, |
120 | 121 | "dependencies": { |
121 | | - "number-flow": "^0.3.2" |
| 122 | + "number-flow": "^0.5.3" |
122 | 123 | } |
123 | 124 | } |
0 commit comments