forked from observablehq/notebook-kit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 3.09 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 3.09 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
{
"name": "@observablehq/notebook-kit",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/observablehq/notebook-kit.git"
},
"version": "1.4.1",
"type": "module",
"scripts": {
"test": "vitest",
"prepublishOnly": "rm -rf dist && tsc && chmod +x dist/bin/*.js && cp -r src/styles src/templates dist/src && cp src/runtime/stdlib/*.css dist/src/runtime/stdlib",
"lint": "tsc --noEmit && eslint bin src types",
"notebooks": "tsx bin/notebooks.ts",
"download": "tsx bin/notebooks.ts download",
"docs:preview": "tsx --watch bin/notebooks.ts preview --base /notebook-kit/ --root docs --template docs/observable.tmpl",
"docs:build": "tsx bin/notebooks.ts build --root docs --template docs/observable.tmpl -- $(find docs -path 'docs/.observable' -prune -o -name '*.html' -print)"
},
"bin": {
"notebooks": "dist/bin/notebooks.js"
},
"files": [
"dist"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js"
},
"./databases": {
"types": "./dist/src/databases/index.d.ts",
"import": "./dist/src/databases/index.js"
},
"./runtime": {
"types": "./dist/src/runtime/index.d.ts",
"import": "./dist/src/runtime/index.js"
},
"./vite": {
"types": "./dist/src/vite/index.d.ts",
"import": "./dist/src/vite/index.js"
},
"./*.css": "./dist/src/styles/*.css"
},
"dependencies": {
"@fontsource/inter": "^5.2.6",
"@fontsource/source-serif-4": "^5.2.8",
"@fontsource/spline-sans-mono": "^5.2.6",
"@lezer/common": "^1.2.3",
"@lezer/css": "^1.2.1",
"@lezer/highlight": "^1.2.1",
"@lezer/html": "^1.3.10",
"@lezer/javascript": "^1.5.1",
"@lezer/markdown": "^1.4.3",
"@lezer/python": "^1.1.18",
"@observablehq/inspector": "^5.0.1",
"@observablehq/parser": "^6.1.0",
"@observablehq/runtime": "^6.0.0",
"@sindresorhus/slugify": "^2.2.1",
"acorn": "^8.15.0",
"acorn-walk": "^8.3.4",
"jsdom": "^26.1.0",
"markdown-it": "^14.1.0",
"markdown-it-anchor": "^9.2.0",
"typescript": "^5.8.3",
"vite": "^7.0.0"
},
"devDependencies": {
"@databricks/sql": "^1.11.0",
"@duckdb/node-api": "^1.3.2-alpha.26",
"@eslint/js": "^9.29.0",
"@google-cloud/bigquery": "^8.1.1",
"@types/jsdom": "^21.1.7",
"@types/markdown-it": "^14.1.2",
"bun-types": "^1.2.20",
"eslint": "^9.29.0",
"globals": "^16.2.0",
"htl": "^0.3.1",
"postgres": "^3.4.7",
"snowflake-sdk": "^2.1.3",
"tsx": "^4.20.3",
"typescript-eslint": "^8.35.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@databricks/sql": "^1.11.0",
"@duckdb/node-api": "^1.3.2-alpha.26",
"@google-cloud/bigquery": "^8.1.1",
"postgres": "^3.4.7",
"snowflake-sdk": "^2.1.3"
},
"peerDependenciesMeta": {
"@databricks/sql": {
"optional": true
},
"@duckdb/node-api": {
"optional": true
},
"@google-cloud/bigquery": {
"optional": true
},
"postgres": {
"optional": true
},
"snowflake-sdk": {
"optional": true
}
}
}