-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.41 KB
/
Copy pathpackage.json
File metadata and controls
99 lines (99 loc) · 2.41 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "sheetq",
"version": "1.0.1",
"description": "Typed, server-side query layer for Google Sheets — model a sheet like a tiny ORM: gviz-powered search, type-safe read & write.",
"type": "module",
"author": {
"name": "Suhrobbek Soatov",
"url": "https://soatov.uz",
"email": "svkhrobbeck@gmail.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/svkhrobbeck/sheetq.git"
},
"bugs": {
"url": "https://github.com/svkhrobbeck/sheetq/issues"
},
"homepage": "https://github.com/svkhrobbeck/sheetq#readme",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"README.md",
"README.en.md",
"LICENSE"
],
"sideEffects": false,
"engines": {
"npm": "please-use-yarn",
"bun": "please-use-yarn",
"yarn": ">= 1",
"node": ">=24"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"{src,tools,public}/**/*.{json,ts,tsx,js,jsx,md,html}\"",
"format:check": "prettier --check \"{src,tools,public}/**/*.{json,ts,tsx,js,jsx,md,html}\"",
"release": "semantic-release",
"prepublishOnly": "tsup",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md,js,jsx,html}": [
"prettier --write"
]
},
"keywords": [
"google-sheets",
"spreadsheet",
"sheets",
"gviz",
"orm",
"typescript",
"googleapis",
"query",
"service-account"
],
"license": "MIT",
"dependencies": {
"dayjs": "^1.11.13",
"googleapis": "^173.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/js": "^9.17.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^22.10.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"semantic-release": "^25.0.5",
"tsup": "^8.3.5",
"typescript": "^5.6.0",
"typescript-eslint": "^8.19.0"
}
}