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