-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.13 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
{
"name": "@rouby/sheetdb",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./caches/InMemory": {
"types": "./dist/caches/InMemory.d.ts",
"import": "./dist/caches/InMemory.js",
"require": "./dist/caches/InMemory.cjs"
}
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "echo \"noop\"",
"build": "tsup src/index.ts src/caches/InMemory.ts --tsconfig tsconfig.build.json --format cjs,esm --clean --dts"
},
"repository": {
"type": "git",
"url": "https://github.com/Rouby/sheetdb.git"
},
"author": "Jonathan Burke",
"license": "MIT",
"bugs": {
"url": "https://github.com/Rouby/sheetdb/issues"
},
"packageManager": "yarn@4.4.0",
"keywords": [
"sheet",
"database",
"query",
"google",
"spreadsheet",
"sheetdb"
],
"devDependencies": {
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.2.0",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"dependencies": {
"fast-json-patch": "^3.1.1",
"google-auth-library": "^9.13.0",
"google-spreadsheet": "^4.1.2"
}
}