-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 1.95 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
{
"name": "better-filter-bar",
"version": "0.1.2",
"description": "A generic, schema-driven structured filter bar built on CodeMirror 6.",
"homepage": "https://github.com/marimo-team/better-filter-bar#readme",
"bugs": {
"url": "https://github.com/marimo-team/better-filter-bar/issues"
},
"license": "MIT",
"author": "marimo team",
"repository": {
"type": "git",
"url": "git+https://github.com/marimo-team/better-filter-bar.git"
},
"files": [
"dist"
],
"type": "module",
"exports": {
".": "./dist/index.mjs",
"./react": "./dist/react/index.mjs",
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build:grammar": "vp exec lezer-generator src/language/fql.grammar -o src/language/fql.js",
"build": "vp run build:grammar && vp pack",
"dev": "vp pack --watch",
"demo": "vp dev demo",
"demo:build": "vp build demo",
"test": "vp test",
"check": "vp check",
"prepublishOnly": "vp run build",
"prepare": "vp config"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.3",
"@codemirror/language": "^6.12.3",
"@codemirror/lint": "^6.9.5",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.40.0",
"@lezer/common": "^1.5.1",
"@lezer/lr": "^1.4.8",
"codemirror": "^6.0.2"
},
"devDependencies": {
"@lezer/generator": "1.8.0",
"@types/node": "25.9.4",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript/native-preview": "7.0.0-dev.20260610.1",
"bumpp": "11.1.0",
"jsdom": "29.1.1",
"react": "19.2.7",
"react-dom": "19.2.7",
"typescript": "6.0.3",
"vite-plus": "0.1.24"
},
"peerDependencies": {
"react": ">=17",
"react-dom": ">=17"
},
"peerDependenciesMeta": {
"react": {
"optional": true
},
"react-dom": {
"optional": true
}
},
"packageManager": "pnpm@11.9.0"
}