-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.24 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
{
"name": "refine-sqlite",
"description": "SQLite data provider for the refine framework",
"version": "1.0.0",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"author": "Mateus Abelli",
"keywords": [
"refine",
"data provider",
"sqlite"
],
"private": false,
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mateusabelli/refine-sqlite.git"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/mateusabelli"
}
],
"engines": {
"node": ">=16"
},
"module": "dist/esm/index.js",
"scripts": {
"start": "tsup --watch --format esm,cjs,iife --legacy-output",
"build": "tsup --format esm,cjs,iife --minify --legacy-output",
"test": "jest --passWithNoTests --runInBand",
"prepare": "npm run build"
},
"dependencies": {
"better-sqlite3": "^11.0.0"
},
"devDependencies": {
"@esbuild-plugins/node-resolve": "^0.2.2",
"@refinedev/core": "^4.51.0",
"@types/better-sqlite3": "^7.6.10",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.8",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"tslib": "^2.6.3",
"tsup": "^8.1.0",
"typescript": "^5.5.2"
}
}