-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 1.85 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
{
"name": "@themost/sqlite",
"version": "2.8.4",
"description": "MOST Web Framework SQLite Adapter",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"scripts": {
"postinstall": "node ./postinstall.js",
"test": "jest",
"build": "rimraf dist && rollup --config rollup.config.js"
},
"peerDependencies": {
"@themost/common": "^2",
"@themost/query": "^2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/themost-framework/sqlite.git"
},
"author": "Kyriakos Barbounakis <k.barbounakis@gmail.com>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/themost-framework/sqlite/issues"
},
"homepage": "https://github.com/themost-framework/sqlite#readme",
"config": {
"sqleanVersion": "0.27.1"
},
"dependencies": {
"async": "^2.6.4",
"sprintf-js": "^1.1.2",
"sqlite3": "^5.1.7",
"unzipper": "^0.12.3"
},
"engines": {
"node": ">=12"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/eslint-parser": "^7.25.9",
"@babel/eslint-plugin": "^7.25.1",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@themost/common": "^2.11.0",
"@themost/data": "^2.14.2",
"@themost/events": "^1.3.0",
"@themost/peers": "^1.0.2",
"@themost/query": "^2.14.5",
"@themost/xml": "^2.5.2",
"@types/jasmine": "^5.1.4",
"dotenv": "^16.0.0",
"eslint": "^9.13.0",
"eslint-plugin-jest": "^28.8.3",
"jest": "^29.7.0",
"mathjs": "^13.2.0",
"module-alias": "^2.2.3",
"moment": "^2.30.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.73.0",
"rollup-plugin-dts": "^4.2.1",
"typescript": "^4.6.4",
"typescript-eslint": "^8.12.1"
}
}