-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.27 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.27 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
{
"name": "webcake-data",
"version": "1.0.15",
"description": "A modern JavaScript/TypeScript client library for WebCake database operations with MongoDB-like query interface",
"main": "index.js",
"module": "index.js",
"browser": "dist/webcake-data.umd.min.js",
"jsdelivr": "dist/webcake-data.umd.min.js",
"unpkg": "dist/webcake-data.umd.min.js",
"type": "module",
"files": [
"src/",
"index.js",
"webcake-data.js",
"dist/",
"types/",
"README.md",
"LICENSE",
"rollup.config.js"
],
"keywords": [
"webcake",
"database",
"client",
"mongodb",
"query-builder",
"orm",
"api-client",
"javascript",
"typescript"
],
"author": "vuluu2k",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/vuluu2k/webcake-data.git"
},
"bugs": {
"url": "https://github.com/vuluu2k/webcake-data/issues"
},
"homepage": "https://github.com/vuluu2k/webcake-data#readme",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build": "rollup -c",
"build:prod": "rollup -c --environment NODE_ENV:production"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.0.0",
"rollup": "^4.52.5"
}
}