-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.41 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
55
56
57
58
59
60
61
{
"name": "@gcanossa/gas-db",
"version": "4.2.1",
"description": "Google Apps Script Database microframework",
"exports": {
".": {
"types": "./dist/sheets-orm.d.ts",
"default": "./dist/sheets-orm.js"
},
"./orm": {
"types": "./dist/sheets-orm.d.ts",
"default": "./dist/sheets-orm.js"
},
"./kv": {
"types": "./dist/key-value-store.d.ts",
"default": "./dist/key-value-store.js"
},
"./fs": {
"types": "./dist/drive-fs-util.d.ts",
"default": "./dist/drive-fs-util.js"
},
"./package.json": "./package.json"
},
"type": "module",
"scripts": {
"build": "vite build -c vite.config.ts",
"build-e2e": "vite build -c vite.config.e2e.ts",
"test": "vitest run",
"pull": "clasp pull",
"deploy": "clasp push"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gcanossa/gas-db.git"
},
"keywords": [
"gas",
"google",
"apps",
"script",
"google apps script",
"db",
"database",
"orm",
"spreadsheet",
"sheet"
],
"author": "Gianmaria Canossa",
"license": "MIT",
"bugs": {
"url": "https://github.com/gcanossa/gas-db/issues"
},
"homepage": "https://github.com/gcanossa/gas-db#readme",
"devDependencies": {
"@types/google-apps-script": "^1.0.78",
"typescript": "^5.3.2",
"vite": "^5.0.6",
"vite-plugin-dts": "^3.7.0",
"vitest": "^1.0.1"
}
}