-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.54 KB
/
package.json
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
{
"name": "@summerforeverco/duck-plot",
"version": "0.0.0",
"type": "module",
"description": "",
"scripts": {
"dev": "vite",
"dev-server": "npm run build && node examples/index.server.js",
"dev-multi-chart": "npm run build && node examples/multiChart.js",
"build": "vite build",
"test": "npm run build && vitest run",
"test:watch": "vitest",
"watch:build": "nodemon",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@observablehq/plot": "0.6.16",
"d3": "7.9.0",
"d3-array": "3.2.4",
"duckdb-async": "1.1.1",
"fast-deep-equal": "3.1.3"
},
"devDependencies": {
"@types/d3": "7.4.3",
"@duckdb/duckdb-wasm": "1.29.0",
"@types/d3-array": "3.2.1",
"@types/jsdom": "21.1.7",
"@types/node": "22.1.0",
"canvas": "2.11.2",
"jsdom": "24.1.1",
"markdown-it-container": "4.0.0",
"opentype.js": "1.3.4",
"prismjs": "1.29.0",
"sql-formatter": "^15.4.5",
"ts-node": "10.9.2",
"typescript": "5.5.4",
"vite": "5.3.5",
"vite-plugin-dts": "4.0.3",
"vitepress": "1.3.4",
"vitest": "2.0.5",
"vue": "^3.5.8"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"main": "dist/index.cjs",
"module": "dist/index.es",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/SummerForeverCo/duck-plot.git"
}
}