-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.36 KB
/
package.json
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
{
"name": "@react-querybuilder/json-logic-js",
"version": "0.1.0",
"description": "Build complex rules, serialize them as JSON, and execute them in JavaScript",
"main": "./dist/json-logic.cjs",
"types": "./dist/json-logic.d.cjs",
"exports": {
".": {
"import": {
"types": "./dist/json-logic.d.ts",
"default": "./dist/json-logic.js"
},
"require": {
"types": "./dist/json-logic.d.cts",
"default": "./dist/json-logic.cjs"
}
}
},
"devDependencies": {
"@types/bun": "latest",
"prettier": "3.2.5",
"serve-static-bun": "^0.5.3",
"tsup": "^8.0.2",
"typescript": "^5.4.2"
},
"scripts": {
"dev": "bun run build && bun server.ts",
"build": "tsup",
"test": "bun test",
"pretty-print": "bunx prettier --write *.{ts,json} src/*.*"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/react-querybuilder/json-logic-js.git"
},
"keywords": [
"json",
"logic",
"jsonlogic",
"rules"
],
"author": "Jeremy Wadhams <[email protected]> (http://jsonlogic.com)",
"contributors": [
"Jake Boone (https://github.com/jakeboone02)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/react-querybuilder/json-logic-js/issues"
},
"homepage": "https://github.com/react-querybuilder/json-logic-js#readme"
}