-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.77 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.77 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
{
"name": "@kylebrodeur/sheets-loader",
"version": "0.1.0",
"description": "A TypeScript library for loading and caching data from Google Sheets with OAuth support",
"keywords": [
"google-sheets",
"sheets",
"google-api",
"typescript",
"oauth",
"service-account",
"cache",
"data-loader",
"spreadsheet",
"csv",
"rows",
"mapping",
"type-safe"
],
"private": false,
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/kylebrodeur/sheets-loader.git"
},
"bugs": {
"url": "https://github.com/kylebrodeur/sheets-loader/issues"
},
"homepage": "https://github.com/kylebrodeur/sheets-loader#readme",
"author": "Kyle Brodeur",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc -p tsconfig.json",
"lint": "eslint src tests",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc --noEmit",
"demo": "tsx examples/demo.ts",
"prepublishOnly": "pnpm typecheck && pnpm test && pnpm build"
},
"dependencies": {
"@kylebrodeur/type-safe-mapping": "^0.1.1",
"google-auth-library": "^8.0.0",
"googleapis": "^121.0.0",
"node-cache": "^5.1.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^20.0.0",
"@types/node-cache": "^4.2.5",
"eslint": "^10.0.0",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"ts-node": "^10.0.0",
"tsx": "^4.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.18"
}
}