@fiction/widget 0.1.2
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/README.md +115 -0
- package/dist/widget.css +1 -0
- package/dist/widget.js +3 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@fiction/widget",
|
|
3
|
+
"version": "0.1.2",
|
|
4
|
+
"description": "Zero-config contextual digital self that auto-adapts to any page",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/widget.js",
|
|
7
|
+
"unpkg": "./dist/widget.js",
|
|
8
|
+
"jsdelivr": "./dist/widget.js",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist"
|
|
11
|
+
],
|
|
12
|
+
"keywords": [
|
|
13
|
+
"widget",
|
|
14
|
+
"chat",
|
|
15
|
+
"ai",
|
|
16
|
+
"digital-self",
|
|
17
|
+
"fiction"
|
|
18
|
+
],
|
|
19
|
+
"author": "Fiction.com",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/fictionco/fiction-www.git",
|
|
24
|
+
"directory": "src/widget"
|
|
25
|
+
},
|
|
26
|
+
"homepage": "https://fiction.com",
|
|
27
|
+
"bugs": {
|
|
28
|
+
"url": "https://github.com/fictionco/fiction-www/issues"
|
|
29
|
+
},
|
|
30
|
+
"publishConfig": {
|
|
31
|
+
"access": "public",
|
|
32
|
+
"registry": "https://registry.npmjs.org/"
|
|
33
|
+
},
|
|
34
|
+
"peerDependencies": {
|
|
35
|
+
"vue": "^3.5.0"
|
|
36
|
+
},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"@antfu/eslint-config": "^5.2.1",
|
|
39
|
+
"@tailwindcss/vite": "^4.1.12",
|
|
40
|
+
"@vitejs/plugin-vue": "^5.2.4",
|
|
41
|
+
"eslint": "^9.33.0",
|
|
42
|
+
"rollup-plugin-visualizer": "^6.0.3",
|
|
43
|
+
"terser": "^5.43.1",
|
|
44
|
+
"typescript": "^5.9.2",
|
|
45
|
+
"vite": "^5.4.19",
|
|
46
|
+
"vitest": "^2.1.9",
|
|
47
|
+
"vue": "^3.5.19",
|
|
48
|
+
"vue-tsc": "^2.2.12"
|
|
49
|
+
},
|
|
50
|
+
"dependencies": {
|
|
51
|
+
"tailwindcss": "^4.1.12"
|
|
52
|
+
},
|
|
53
|
+
"scripts": {
|
|
54
|
+
"dev": "vite --config vite.config.widget.ts",
|
|
55
|
+
"build": "vite build --config vite.config.widget.ts",
|
|
56
|
+
"preview": "vite preview --config vite.config.widget.ts",
|
|
57
|
+
"typecheck": "vue-tsc --noEmit",
|
|
58
|
+
"test": "vitest run",
|
|
59
|
+
"test:watch": "vitest",
|
|
60
|
+
"lint": "eslint . --ext .ts,.vue"
|
|
61
|
+
}
|
|
62
|
+
}
|