@deepfrog/pangents-widget 2.1.0
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.
- package/LICENSE +21 -0
- package/README.md +181 -0
- package/dist/favicon.svg +4 -0
- package/dist/pangents-icon.png +0 -0
- package/dist/pangents-icon.svg +10 -0
- package/dist/preview.html +244 -0
- package/dist/widget.js +36592 -0
- package/package.json +118 -0
package/package.json
ADDED
|
@@ -0,0 +1,118 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deepfrog/pangents-widget",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "2.1.0",
|
|
5
|
+
"description": "Pangents AI - Embeddable AI widget for web applications",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/index.cjs.js",
|
|
8
|
+
"module": "dist/index.es.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"import": "./dist/index.es.js",
|
|
13
|
+
"require": "./dist/index.cjs.js",
|
|
14
|
+
"types": "./dist/index.d.ts"
|
|
15
|
+
},
|
|
16
|
+
"./widget": {
|
|
17
|
+
"import": "./dist-widget/widget.js",
|
|
18
|
+
"types": "./dist/widget-embed.d.ts"
|
|
19
|
+
}
|
|
20
|
+
},
|
|
21
|
+
"files": [
|
|
22
|
+
"dist",
|
|
23
|
+
"dist-widget",
|
|
24
|
+
"README.md",
|
|
25
|
+
"LICENSE"
|
|
26
|
+
],
|
|
27
|
+
"sideEffects": false,
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/deepfrog/pangents-widget.git"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://github.com/deepfrog/pangents-widget#readme",
|
|
33
|
+
"bugs": {
|
|
34
|
+
"url": "https://github.com/deepfrog/pangents-widget/issues"
|
|
35
|
+
},
|
|
36
|
+
"keywords": [
|
|
37
|
+
"chatbot",
|
|
38
|
+
"widget",
|
|
39
|
+
"ai",
|
|
40
|
+
"chat",
|
|
41
|
+
"pangents",
|
|
42
|
+
"react",
|
|
43
|
+
"embeddable"
|
|
44
|
+
],
|
|
45
|
+
"author": "Pangents <developer@deepfrog.ai>",
|
|
46
|
+
"license": "MIT",
|
|
47
|
+
"publishConfig": {
|
|
48
|
+
"access": "public",
|
|
49
|
+
"registry": "https://registry.npmjs.org/"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"dev": "vite --config vite.config.app.ts",
|
|
53
|
+
"build": "npm run build:lib && npm run build:widget",
|
|
54
|
+
"build:lib": "tsc -b && vite build --config vite.config.ts",
|
|
55
|
+
"build:app": "tsc -b && vite build --config vite.config.app.ts",
|
|
56
|
+
"build:widget": "tsc -b && vite build --config vite.config.widget.ts",
|
|
57
|
+
"lint": "eslint .",
|
|
58
|
+
"preview": "vite preview",
|
|
59
|
+
"check": "tsc -b --noEmit",
|
|
60
|
+
"test": "vitest",
|
|
61
|
+
"test:ui": "vitest --ui",
|
|
62
|
+
"test:run": "vitest run",
|
|
63
|
+
"prepublishOnly": "npm run build",
|
|
64
|
+
"release": "npm run build && npm publish",
|
|
65
|
+
"release:patch": "npm version patch && npm run release",
|
|
66
|
+
"release:minor": "npm version minor && npm run release",
|
|
67
|
+
"release:major": "npm version major && npm run release"
|
|
68
|
+
},
|
|
69
|
+
"dependencies": {
|
|
70
|
+
"@emotion/is-prop-valid": "^1.4.0",
|
|
71
|
+
"@radix-ui/react-slot": "^1.2.3",
|
|
72
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
73
|
+
"@tanstack/react-query": "^5.90.5",
|
|
74
|
+
"axios": "^1.12.2",
|
|
75
|
+
"class-variance-authority": "^0.7.1",
|
|
76
|
+
"clsx": "^2.1.1",
|
|
77
|
+
"dayjs": "^1.11.19",
|
|
78
|
+
"framer-motion": "^12.23.24",
|
|
79
|
+
"jwt-decode": "^4.0.0",
|
|
80
|
+
"lucide-react": "^0.511.0",
|
|
81
|
+
"react": "^18.3.1",
|
|
82
|
+
"react-dom": "^18.3.1",
|
|
83
|
+
"react-router-dom": "^7.9.4",
|
|
84
|
+
"sonner": "^2.0.7",
|
|
85
|
+
"tailwind-merge": "^3.3.1",
|
|
86
|
+
"tailwind-variants": "^3.1.1",
|
|
87
|
+
"tailwindcss-animate": "^1.0.7",
|
|
88
|
+
"zustand": "^5.0.3"
|
|
89
|
+
},
|
|
90
|
+
"devDependencies": {
|
|
91
|
+
"@eslint/js": "^9.25.0",
|
|
92
|
+
"@tanstack/react-query-devtools": "^5.90.2",
|
|
93
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
94
|
+
"@testing-library/react": "^16.3.0",
|
|
95
|
+
"@types/node": "^22.15.30",
|
|
96
|
+
"@types/react": "^18.3.12",
|
|
97
|
+
"@types/react-dom": "^18.3.1",
|
|
98
|
+
"@vitejs/plugin-react": "^4.4.1",
|
|
99
|
+
"@vitest/ui": "^4.0.3",
|
|
100
|
+
"autoprefixer": "^10.4.21",
|
|
101
|
+
"babel-plugin-react-dev-locator": "^1.0.0",
|
|
102
|
+
"eslint": "^9.25.0",
|
|
103
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
104
|
+
"eslint-plugin-react-refresh": "^0.4.19",
|
|
105
|
+
"globals": "^16.0.0",
|
|
106
|
+
"happy-dom": "^20.0.8",
|
|
107
|
+
"jsdom": "^27.0.1",
|
|
108
|
+
"postcss": "^8.5.3",
|
|
109
|
+
"tailwindcss": "^3.4.17",
|
|
110
|
+
"terser": "^5.44.1",
|
|
111
|
+
"typescript": "~5.8.3",
|
|
112
|
+
"typescript-eslint": "^8.30.1",
|
|
113
|
+
"vite": "^6.3.5",
|
|
114
|
+
"vite-plugin-trae-solo-badge": "^1.0.0",
|
|
115
|
+
"vite-tsconfig-paths": "^5.1.4",
|
|
116
|
+
"vitest": "^4.0.3"
|
|
117
|
+
}
|
|
118
|
+
}
|