forked from Jakubantalik/thinking-orbs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.59 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
59
60
61
62
63
64
65
66
67
68
{
"name": "thinking-orbs",
"version": "0.1.1",
"description": "Dotted thought-orb loading indicators for AI & agent UIs — six tuned states, two sizes, auto dark/light",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.es.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "vite --config vite.config.demo.ts",
"build": "vite build",
"build:demo": "vite build --config vite.config.demo.ts",
"typecheck": "vue-tsc --noEmit",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"vue": ">=3.4.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.3.3",
"@vitejs/plugin-vue": "^5.2.4",
"tailwindcss": "^4.3.3",
"typescript": "^5.3.0",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.7.0",
"vue": "^3.5.18",
"vue-tsc": "^2.2.12"
},
"keywords": [
"vue",
"loading",
"loader",
"spinner",
"ai",
"agent",
"llm",
"canvas",
"animation",
"dark-mode"
],
"author": "Jakub Antalik",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/RareFormLabs/thinking-orbs.git"
},
"bugs": {
"url": "https://github.com/RareFormLabs/thinking-orbs/issues"
},
"homepage": "https://rareformlabs.github.io/thinking-orbs/"
}