-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
157 lines (157 loc) · 4.44 KB
/
Copy pathpackage.json
File metadata and controls
157 lines (157 loc) · 4.44 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
{
"name": "@jeyabbalas/data-table",
"version": "0.7.0",
"description": "A client-side JavaScript library for interactive, explorable data tables using DuckDB WASM",
"type": "module",
"main": "./dist/data-table.js",
"module": "./dist/data-table.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/data-table.js"
},
"./advanced": {
"types": "./dist/advanced.d.ts",
"import": "./dist/advanced.js"
},
"./styles": {
"types": "./dist/styles.d.ts",
"default": "./dist/data-table.css"
},
"./styles.css": "./dist/data-table.css"
},
"files": [
"dist"
],
"style": "./dist/data-table.css",
"sideEffects": [
"**/*.css"
],
"engines": {
"node": ">=20"
},
"overrides": {
"brace-expansion": "^5.0.9",
"@changesets/parse": {
"js-yaml": "^4.3.1"
},
"read-yaml-file": {
"js-yaml": "^3.15.1"
}
},
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"dev": "vite --config vite.demo.config.ts",
"build": "npm run check:css-vars && tsc --noEmit && vite build && tsc -p tsconfig.build.json",
"build:demo": "vite build --config vite.demo.config.ts",
"preview": "vite preview --config vite.demo.config.ts",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"test:browser": "playwright test",
"test:perf": "RUN_DUCKDB_PERF=1 RUN_LIFECYCLE_STRESS=1 vitest run --config vitest.perf.config.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --cache --cache-strategy content",
"lint:fix": "eslint . --fix --cache --cache-strategy content",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check:css-vars": "node scripts/check-css-vars.mjs",
"docs:api": "typedoc",
"docs:api:check": "typedoc --emit none",
"size": "size-limit",
"changeset": "changeset",
"version": "changeset version && npm install --package-lock-only",
"release": "changeset publish",
"prepublishOnly": "npm run build && npm run test:coverage"
},
"keywords": [
"data-table",
"duckdb",
"analytics",
"visualization",
"interactive"
],
"author": "Jeya Balaji Balasubramanian",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/jeyabbalas/data-table.git"
},
"homepage": "https://github.com/jeyabbalas/data-table#readme",
"bugs": {
"url": "https://github.com/jeyabbalas/data-table/issues"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@duckdb/duckdb-wasm": "^1.33.1-dev45.0",
"@lezer/highlight": "^1.2.3"
},
"peerDependenciesMeta": {
"@codemirror/autocomplete": {
"optional": true
},
"@codemirror/commands": {
"optional": true
},
"@codemirror/lang-sql": {
"optional": true
},
"@codemirror/language": {
"optional": true
},
"@codemirror/state": {
"optional": true
},
"@codemirror/view": {
"optional": true
},
"@lezer/highlight": {
"optional": true
}
},
"devDependencies": {
"@axe-core/playwright": "^4.12.1",
"@changesets/cli": "^2.31.0",
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/lang-sql": "^6.10.0",
"@codemirror/language": "^6.12.3",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.41.1",
"@duckdb/duckdb-wasm": "^1.33.1-dev45.0",
"@eslint/js": "^10.0.1",
"@lezer/highlight": "^1.2.3",
"@observablehq/plot": "^0.6.17",
"@playwright/test": "^1.62.1",
"@size-limit/file": "^12.1.0",
"@types/node": "^26.0.0",
"@types/topojson-client": "^3.1.5",
"@vitest/coverage-v8": "^4.1.5",
"axe-core": "^4.11.3",
"eslint": "^10.4.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import-x": "^4.16.2",
"fake-indexeddb": "^6.2.5",
"globals": "^17.6.0",
"jsdom": "^29.1.0",
"playwright": "^1.62.1",
"prettier": "^3.8.3",
"size-limit": "^12.1.0",
"topojson-client": "^3.1.0",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^4.11.0",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.0",
"vite": "^8.0.8",
"vitest": "^4.1.4"
}
}