-
-
Notifications
You must be signed in to change notification settings - Fork 392
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.2 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.2 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
76
77
78
79
80
81
82
83
{
"name": "google-spreadsheet",
"version": "5.2.0",
"description": "Google Sheets API -- simple interface to read/write data and manage sheets",
"keywords": [
"google spreadsheets",
"google sheets",
"google",
"spreadsheet",
"spreadsheets",
"sheets",
"gdata",
"api",
"googleapis",
"drive",
"google docs",
"google drive"
],
"homepage": "https://theoephraim.github.io/node-google-spreadsheet",
"repository": {
"type": "git",
"url": "git://github.com/theoephraim/node-google-spreadsheet.git"
},
"license": "MIT",
"author": "Theo Ephraim <theozero@gmail.com> (https://theoephraim.com)",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"src/index.ts",
"src/lib"
],
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"docs:preview": "docsify serve docs",
"lint": "eslint ./ --ext .ts",
"lint:fix": "bun run lint --fix",
"nodev": "node -v",
"readme:copy": "echo \"<!-- DO NOT EDIT THIS FILE, EDIT MAIN README.md AND RUN \\`bun readme:copy\\` instead -->\n\n_Welcome to the docs site for_\n\" | cat - README.md > docs/README.md",
"test": "vitest",
"test:ci": "vitest run"
},
"dependencies": {
"es-toolkit": "^1.44.0",
"ky": "^1.14.3"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.2.3",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"docsify-cli": "^4.4.4",
"eslint": "^8.41.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-floating-promise": "^1.0.2",
"google-auth-library": "^10.5.0",
"nock": "^14.0.11",
"tsdown": "^0.20.3",
"typescript": "^5.9.3",
"varlock": "^0.2.2",
"vitest": "^4.0.18"
},
"peerDependencies": {
"google-auth-library": ">=8.8.0"
},
"peerDependenciesMeta": {
"google-auth-library": {
"optional": true
}
}
}