-
-
Notifications
You must be signed in to change notification settings - Fork 530
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.92 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.92 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
{
"name": "@react-awesome-query-builder/bootstrap",
"version": "6.7.0-alpha.0",
"description": "User-friendly query builder for React. Bootstrap widgets",
"keywords": [
"query-builder",
"query",
"builder",
"query builder",
"react",
"reactjs",
"ui",
"bootstrap",
"reactstrap"
],
"homepage": "https://github.com/ukrbublik/react-awesome-query-builder",
"bugs": "https://github.com/ukrbublik/react-awesome-query-builder/issues",
"repository": {
"type": "git",
"url": "https://github.com/ukrbublik/react-awesome-query-builder.git",
"directory": "packages/bootstrap"
},
"license": "MIT",
"author": "Denis Oblogin <ukrbublik@gmail.com> (https://github.com/ukrbublik)",
"exports": {
".": {
"types": "./types/index.d.ts",
"import": "./esm/index.js",
"require": "./cjs/index.js"
},
"./package.json": "./package.json",
"./css/styles.css": "./css/styles.css",
"./css/styles.scss": "./css/styles.scss"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./types/index.d.ts",
"scripts": {
"build": "node ./scripts/build-npm.js",
"eslint": "eslint --ext .jsx --ext .js --ext .tsx --ext .ts --ext .d.ts ./modules/",
"lint": "npm run eslint && npm run tsc",
"lint-fix": "eslint --ext .jsx --ext .js --ext .tsx --ext .ts --ext .d.ts --fix ./modules/",
"prepare": "npm run build",
"tsc": "tsc -p . --noEmit",
"tsc-emit-types": "tsc -p . --declaration --emitDeclarationOnly --allowJs false --declarationDir types"
},
"dependencies": {
"@babel/runtime": "^7.27.0",
"@react-awesome-query-builder/ui": "workspace:^"
},
"devDependencies": {
"@babel/cli": "^7.27.0",
"@babel/core": "^7.26.10",
"@babel/plugin-transform-class-properties": "^7.25.9",
"@babel/plugin-transform-modules-commonjs": "^7.26.3",
"@babel/plugin-transform-private-methods": "^7.25.9",
"@babel/plugin-transform-private-property-in-object": "^7.25.9",
"@babel/plugin-transform-runtime": "^7.26.10",
"@babel/preset-env": "^7.26.9",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.27.0",
"@babel/runtime": "^7.27.0",
"@fortawesome/fontawesome-svg-core": "^6.5.2",
"@fortawesome/free-solid-svg-icons": "^6.5.2",
"@fortawesome/react-fontawesome": "^0.2.1",
"@popperjs/core": "^2.11.8",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.11",
"bootstrap": "^5.3.3",
"globby": "^14.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"reactstrap": "^9.2.2",
"sass": "^1.77.2"
},
"peerDependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.0 || ^6.1.0",
"@fortawesome/free-solid-svg-icons": "^5.15.4 || ^6.0.0",
"@fortawesome/react-fontawesome": ">=0.1.16 <1.0",
"bootstrap": "^5.1.3",
"react": "^16.8.4 || ^17.0.1 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.4 || ^17.0.1 || ^18.0.0 || ^19.0.0",
"reactstrap": "^9.0.0"
}
}