forked from uwdata/mosaic
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.47 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.47 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
{
"private": true,
"name": "mosaic",
"description": "Scalable and extensible linked data views.",
"license": "BSD-3-Clause",
"author": "Jeffrey Heer (https://idl.uw.edu)",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/uwdata/mosaic.git"
},
"scripts": {
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:examples": "node bin/prepare-examples.js",
"docs:preview": "vitepress preview docs",
"docs:schema": "node bin/publish-schema.js",
"build": "lerna run build",
"lint": "lerna run lint",
"test": "lerna run test",
"server": "cd packages/duckdb-server && hatch run serve",
"server:node": "nodemon packages/duckdb/bin/run-server.js",
"dev": "vite",
"release": "npm run test && npm run lint && lerna publish && npm run release:python",
"release:python": "npm run release:server && npm run release:widget",
"release:server": "cd packages/duckdb-server && npm run release",
"release:widget": "cd packages/widget && npm run release"
},
"devDependencies": {
"ajv": "^8.16.0",
"ajv-formats": "^3.0.1",
"esbuild": "^0.21.5",
"eslint": "^9.5.0",
"eslint-plugin-jsdoc": "^48.4.0",
"lerna": "^8.1.5",
"mocha": "^10.5.0",
"nodemon": "^3.1.4",
"rimraf": "^5.0.7",
"timezone-mock": "^1.3.6",
"typescript": "^5.5.2",
"vite": "^5.3.1",
"vitepress": "1.2.3",
"yaml": "^2.4.5"
},
"workspaces": [
"packages/*"
]
}