-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "@grandscatter/core",
"version": "0.3.1",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"packageManager": "pnpm@9.15.3",
"sideEffects": false,
"scripts": {
"build": "tsup",
"build:widget": "esbuild python/afm/widget.ts --bundle --format=esm --minify --outdir=python/grandscatter/static --alias:@grandscatter/core=./src/index.ts",
"dev": "vite",
"dev:widget": "esbuild python/afm/widget.ts --bundle --format=esm --outdir=python/grandscatter/static --alias:@grandscatter/core=./src/index.ts --sourcemap=inline --watch",
"test": "vitest run",
"test:watch": "vitest",
"check": "biome check",
"format": "biome check --write"
},
"devDependencies": {
"@anywidget/types": "^0.2.0",
"@biomejs/biome": "^2.3.14",
"@types/d3-color": "^3.1.3",
"@types/d3-drag": "^3.0.7",
"@types/d3-scale": "^4.0.8",
"@types/d3-scale-chromatic": "^3.1.0",
"@types/d3-selection": "^3.0.11",
"d3-color": "^3.1.0",
"d3-drag": "^3.0.0",
"d3-scale": "^4.0.2",
"d3-scale-chromatic": "^3.1.0",
"d3-selection": "^3.0.0",
"apache-arrow": "^18.0.0",
"esbuild": "^0.24.0",
"tsup": "^8.0.0",
"typescript": "^5.3.0",
"vite": "^6.0.0",
"vitest": "^1.0.0"
}
}