-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.51 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
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
96
97
98
{
"name": "@sqlitecloud/drivers",
"version": "1.0.354",
"description": "SQLiteCloud drivers for Typescript/Javascript in edge, web and node clients",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"test": "jest --coverage --testPathIgnorePatterns=core",
"build": "rm -rf ./lib/ && tsc --project tsconfig.build.json && npx webpack",
"publish": "npm run build && npm publish --access public",
"prettier": "prettier --write 'src/**/*'",
"typedoc": "rm -rf ./docs/ && typedoc --out docs && typedoc --plugin typedoc-plugin-markdown --out docs/markdown",
"npmgui": "npx npm-gui@latest",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sqlitecloud/sqlitecloud-js.git"
},
"license": "MIT",
"author": {
"name": "SQLite Cloud, Inc.",
"email": "[email protected]",
"url": "https://sqlitecloud.io/"
},
"engines": {
"node": ">=18.0"
},
"keywords": [
"sql",
"sqlite",
"sqlite3",
"sqlitecloud",
"database",
"cloud"
],
"bugs": {
"url": "https://github.com/sqlitecloud/sqlitecloud-js/issues"
},
"homepage": "https://github.com/sqlitecloud/sqlitecloud-js#readme",
"dependencies": {
"@craftzdog/react-native-buffer": "^6.0.5",
"buffer": "^6.0.3",
"eventemitter3": "^5.0.1",
"lz4js": "^0.2.0",
"react-native-url-polyfill": "^2.0.0",
"socket.io-client": "^4.8.1",
"whatwg-url": "^14.1.0"
},
"peerDependencies": {
"react-native-quick-base64": "*",
"react-native-tcp-socket": "^6.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/lz4": "^0.6.4",
"@types/node": "^22.10.2",
"@types/whatwg-url": "^13.0.0",
"dotenv": "^16.4.7",
"dotenv-cli": "^7.4.4",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-html-reporter": "^3.10.2",
"prettier": "^3.4.2",
"sqlite3": "^5.1.7",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.27.5",
"typedoc-plugin-markdown": "^4.3.2",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4"
},
"config": {},
"release": {
"branches": [
"main"
]
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"printWidth": 160
},
"react-native": {
"whatwg-url": "react-native-url-polyfill",
"tls": "react-native-tcp-socket",
"buffer": "@craftzdog/react-native-buffer"
},
"browser": {
"tls": false
}
}