-
Notifications
You must be signed in to change notification settings - Fork 219
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.48 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.48 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
{
"name": "@observablehq/plot",
"description": "A JavaScript library for exploratory data visualization.",
"version": "0.6.17",
"author": {
"name": "Observable, Inc.",
"url": "https://observablehq.com"
},
"license": "ISC",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"jsdelivr": "dist/plot.umd.min.js",
"unpkg": "dist/plot.umd.min.js",
"exports": {
"umd": "./dist/plot.umd.min.js",
"default": "./src/index.js"
},
"types": "src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/observablehq/plot.git"
},
"files": [
"dist/**/*.js",
"src/**/*.d.ts",
"src/**/*.js"
],
"scripts": {
"test": "pnpm run test:vitest run && pnpm run test:tsc && pnpm run test:lint && pnpm run test:prettier",
"test:coverage": "TZ=America/Los_Angeles vitest run --coverage",
"test:vitest": "TZ=America/Los_Angeles vitest --typecheck",
"test:lint": "eslint src test",
"test:prettier": "prettier --check src test",
"test:tsc": "tsc",
"prepublishOnly": "rm -rf dist && rollup -c",
"dev": "vite",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"sideEffects": [
"./src/index.js"
],
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.20.0",
"@observablehq/runtime": "^6.0.0",
"@observablehq/stdlib": "^5.8.8",
"@rollup/plugin-commonjs": "^28.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.0",
"@types/d3": "^7.4.0",
"@types/node": "^22.13.2",
"@typescript-eslint/eslint-plugin": "^8.24.0",
"@typescript-eslint/parser": "^8.24.0",
"@vitest/coverage-v8": "^4.0.18",
"apache-arrow": "^19.0.0",
"canvas": "^3.1.0",
"d3-format": "^3.1.2",
"d3-geo-projection": "^4.0.0",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"globals": "^15.15.0",
"htl": "^0.3.0",
"js-beautify": "1",
"jsdom": "^29.0.1",
"markdown-it-container": "^4.0.0",
"prettier": "~3.0.0",
"rollup": "^4.9.1",
"topojson-client": "^3.1.0",
"ts-morph": "^25.0.1",
"typescript": "^5.0.2",
"vite": "^6.1.0",
"vitepress": "^1.3.1",
"vitest": "^4.0.8"
},
"dependencies": {
"d3": "^7.9.0",
"interval-tree-1d": "^1.0.0",
"isoformat": "^0.2.0"
},
"engines": {
"node": ">=12"
},
"publishConfig": {
"access": "public"
}
}