@data-navigator/bokeh-wrapper 0.2.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 +71 -0
- package/dist/index.cjs +781 -0
- package/dist/index.d.cts +186 -0
- package/dist/index.d.ts +186 -0
- package/dist/index.js +747 -0
- package/package.json +54 -0
package/package.json
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@data-navigator/bokeh-wrapper",
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"author": "Frank Elavsky",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"description": "A data-navigator wrapper for Bokeh charts with smart defaults and a text-chat navigation interface.",
|
|
8
|
+
"main": "./dist/index.cjs",
|
|
9
|
+
"module": "./dist/index.js",
|
|
10
|
+
"types": "./dist/src/index.d.ts",
|
|
11
|
+
"files": [
|
|
12
|
+
"dist/**/*",
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
15
|
+
],
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"import": {
|
|
19
|
+
"types": "./dist/src/index.d.ts",
|
|
20
|
+
"default": "./dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"require": {
|
|
23
|
+
"types": "./dist/src/index.d.ts",
|
|
24
|
+
"default": "./dist/index.cjs"
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"keywords": [
|
|
29
|
+
"visualization",
|
|
30
|
+
"accessibility",
|
|
31
|
+
"bokeh",
|
|
32
|
+
"data-navigator",
|
|
33
|
+
"a11y"
|
|
34
|
+
],
|
|
35
|
+
"scripts": {
|
|
36
|
+
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
37
|
+
"clean": "rm -rf ./dist",
|
|
38
|
+
"dev": "vitepress dev docs",
|
|
39
|
+
"build:docs": "vitepress build docs",
|
|
40
|
+
"preview": "vitepress preview docs",
|
|
41
|
+
"prepublishOnly": "yarn build && cp ../../README.md ../../LICENSE . 2>/dev/null || true"
|
|
42
|
+
},
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"data-navigator": ">=2.3.0"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@swc/core": "^1.3.75",
|
|
48
|
+
"data-navigator": "*",
|
|
49
|
+
"tsup": "^7.2.0",
|
|
50
|
+
"typescript": "^5.1.6",
|
|
51
|
+
"vitepress": "^1.4.0",
|
|
52
|
+
"vue": "^3.5.0"
|
|
53
|
+
}
|
|
54
|
+
}
|