-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
125 lines (125 loc) · 3.02 KB
/
Copy pathpackage.json
File metadata and controls
125 lines (125 loc) · 3.02 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
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
125
{
"name": "@perhapxin/dddk",
"version": "0.3.0",
"description": "Command palette + voice + Dwell + inline AI + DOM-grounded agent SDK for any web app",
"license": "AGPL-3.0-or-later",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./agent": {
"types": "./dist/agent/index.d.ts",
"import": "./dist/agent/index.js"
},
"./llm": {
"types": "./dist/llm/index.d.ts",
"import": "./dist/llm/index.js"
},
"./ui": {
"types": "./dist/ui/index.d.ts",
"import": "./dist/ui/index.js"
},
"./skills": {
"types": "./dist/skills/index.d.ts",
"import": "./dist/skills/index.js"
},
"./toolbox": {
"types": "./dist/toolbox/index.d.ts",
"import": "./dist/toolbox/index.js"
},
"./toolbox/search": {
"types": "./dist/toolbox/search/index.d.ts",
"import": "./dist/toolbox/search/index.js"
},
"./toolbox/recommend": {
"types": "./dist/toolbox/recommend/index.d.ts",
"import": "./dist/toolbox/recommend/index.js"
},
"./modules/analytics": {
"types": "./dist/modules/analytics/index.d.ts",
"import": "./dist/modules/analytics/index.js"
},
"./analytics": {
"types": "./dist/analytics/index.d.ts",
"import": "./dist/analytics/index.js"
},
"./analytics/dashboard": {
"types": "./dist/analytics/dashboard/index.d.ts",
"import": "./dist/analytics/dashboard/index.js"
},
"./modules/proactive": {
"types": "./dist/modules/proactive/index.d.ts",
"import": "./dist/modules/proactive/index.js"
},
"./styles.css": "./dist/styles.css",
"./styles/tokens.css": "./dist/styles/tokens.css",
"./styles/index.css": "./dist/styles/index.css"
},
"sideEffects": [
"**/*.css"
],
"files": [
"dist",
"docs",
"media",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"react": {
"optional": true
}
},
"devDependencies": {
"@types/dom-speech-recognition": "^0.0.6",
"@types/react": "^19.0.0",
"fake-indexeddb": "^6.2.5",
"happy-dom": "^20.10.6",
"react": "^19.0.0",
"tsup": "^8.3.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PerhapxinLab/dotdotduck.git"
},
"bugs": {
"url": "https://github.com/PerhapxinLab/dotdotduck/issues"
},
"homepage": "https://dddk.perhapxin.com",
"keywords": [
"command-palette",
"cmdk",
"ai-agent",
"browser-agent",
"web-agent",
"dom",
"voice",
"inline-ai",
"dwell",
"skill-sdk",
"react",
"svelte",
"vue"
],
"publishConfig": {
"access": "public"
}
}