-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.2 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
86
87
88
89
90
91
92
93
94
95
{
"name": "unified-db-layer",
"version": "1.0.0",
"description": "Cross-platform unified database layer with auto-environment detection and Prisma-like API",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"prepublishOnly": "npm run build && npm test",
"dev": "node examples/node-example.js"
},
"keywords": [
"database",
"cross-platform",
"offline",
"indexeddb",
"localstorage",
"sqlite",
"asyncstorage",
"prisma",
"orm",
"react-native",
"electron",
"browser",
"nodejs"
],
"author": {
"name": "Your Name",
"email": "your.email@example.com",
"url": "https://your-website.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/unified-db-layer.git"
},
"bugs": {
"url": "https://github.com/yourusername/unified-db-layer/issues"
},
"homepage": "https://github.com/yourusername/unified-db-layer#readme",
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"@react-native-async-storage/async-storage": "^1.0.0"
},
"peerDependenciesMeta": {
"@react-native-async-storage/async-storage": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.28.3",
"@babel/preset-env": "^7.28.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-terser": "^0.4.4",
"eslint": "^8.57.1",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"rollup": "^3.29.5"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"jest": {
"testEnvironment": "jsdom",
"collectCoverageFrom": [
"src/**/*.js",
"!src/**/*.test.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
]
}
}