-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.8 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.8 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
{
"$schema": "https://json.schemastore.org/package",
"name": "nativeql",
"version": "1.0.0",
"description": "A lightweight TypeORM-like ORM for React Native with SQLite",
"main": "dist/index.js",
"bin": {
"nativeql": "dist/cli/index.js"
},
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/Bes-js/nativeql.git",
"directory": "packages/nativeql"
},
"author": {
"name": "Bes-js",
"url": "https://github.com/Bes-js"
},
"bugs": {
"url": "https://github.com/Bes-js/nativeql/issues"
},
"homepage": "https://github.com/Bes-js/nativeql#readme",
"license": "MIT",
"funding": {
"type": "buymeacoffee",
"url": "https://www.buymeacoffee.com/beykant"
},
"keywords": [
"react-native",
"react",
"orm",
"sqlite",
"expo",
"typeorm",
"react-native-sqlite-storage",
"expo-sqlite",
"sqlite3",
"nativeql"
],
"scripts": {
"build": "tsc",
"test": "ts-node src/test/demo.ts"
},
"dependencies": {
"@inquirer/prompts": "^8.1.0",
"boxen": "^5.1.2",
"chalk": "^4.1.2",
"commander": "^14.0.2",
"figlet": "^1.9.4",
"glob": "^13.0.0",
"gradient-string": "^3.0.0",
"ora": "^5.4.1",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.1.7"
},
"peerDependencies": {
"expo-sqlite": "^16.0.10",
"react-native-sqlite-storage": "*"
},
"peerDependenciesMeta": {
"expo-sqlite": {
"optional": true
},
"react-native-sqlite-storage": {
"optional": true
},
"sqlite3": {
"optional": true
}
},
"devDependencies": {
"@types/figlet": "^1.7.0",
"@types/glob": "^8.1.0",
"@types/node": "^18.0.0",
"@types/ora": "^3.1.0",
"@types/sqlite3": "^3.1.11",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
}
}