-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.51 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.51 KB
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
{
"name": "solid-thinking-orbs",
"version": "0.1.0",
"description": "SolidJS implementation of the stunning Thinking Orbs loading indicators",
"author": "Jakub Antalik",
"contributors": [
"Mvkweb (SolidJS Port)"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Mvkweb/solid-thinking-orbs.git"
},
"homepage": "https://solid-thinking-orbs.vercel.app",
"bugs": {
"url": "https://github.com/Mvkweb/solid-thinking-orbs/issues"
},
"type": "module",
"main": "dist/solid-thinking-orbs.umd.cjs",
"module": "dist/solid-thinking-orbs.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/solid-thinking-orbs.js",
"require": "./dist/solid-thinking-orbs.umd.cjs",
"types": "./dist/index.d.ts"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"scripts": {
"dev": "vite --config vite.config.demo.ts",
"build:demo": "vite build --config vite.config.demo.ts",
"build:lib": "vite build",
"build": "bun run build:lib",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.6.0"
},
"peerDependencies": {
"solid-js": "^1.9.13"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^24.13.2",
"tailwindcss": "^4.3.3",
"typescript": "~6.0.2",
"vite": "^8.1.1",
"vite-plugin-dts": "^5.0.3",
"vite-plugin-solid": "^2.11.12",
"solid-js": "^1.9.13"
}
}