-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.15 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
{
"name": "@react-querybuilder/migrate-raqb",
"description": "Conversion utilities for migrating between react-awesome-query-builder and react-querybuilder",
"version": "8.21.2",
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/index.js",
"module": "./dist/react-querybuilder_migrate-raqb.legacy-esm.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/react-querybuilder_migrate-raqb.d.mts",
"default": "./dist/react-querybuilder_migrate-raqb.mjs"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"types": "./dist/react-querybuilder_migrate-raqb.legacy-esm.d.ts",
"files": [
"dist"
],
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/react-querybuilder/migrate-raqb.git"
},
"license": "MIT",
"homepage": "https://react-querybuilder.js.org/",
"keywords": [
"react",
"querybuilder",
"query",
"builder",
"migrate",
"migration",
"convert",
"parser",
"awesome-query-builder",
"react-awesome-query-builder",
"operators",
"clause",
"expression",
"sql"
],
"scripts": {
"build": "bunx --bun tsdown",
"typecheck": "tsc --noEmit",
"typecheck:watch": "tsc --noEmit --watch",
"test": "bun test",
"test:watch": "bun test --watch",
"lint": "oxlint",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"are-the-types-wrong": "attw --format table-flipped --pack .",
"checkall": "bun install --frozen-lockfile && bun run typecheck && bun run build && bun run fmt:check && bun run lint && bun run test && bun run are-the-types-wrong"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.5",
"@react-awesome-query-builder/core": "6.7.0-alpha.0",
"@react-querybuilder/core": "^8.21.2",
"@types/bun": "^1.3.14",
"@types/node": "^26.1.2",
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
"oxlint-tsgolint": "^7.0.2001",
"tsdown": "^0.22.14",
"typescript": "^7.0.2"
},
"peerDependencies": {
"@react-querybuilder/core": ">=8.21.2 <9"
}
}