-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 1.96 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 1.96 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
{
"name": "bootgs",
"version": "1.5.1",
"description": "Boot Framework for Google Apps Script™ projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"dev": "vitest",
"type:check": "tsc --noEmit",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:unit": "vitest run test/unit",
"test:integration": "vitest run test/integration",
"test:cov": "npx vitest run --coverage",
"build": "rm -rf dist/* && tsc -b --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bootgs/boot.git"
},
"keywords": [
"google-apps-script",
"googleappsscript",
"apps-script",
"appsscript",
"gas",
"typescript",
"javascript",
"bootgs"
],
"author": {
"name": "Maksym Stoianov",
"email": "stoianov.maksym@gmail.com",
"url": "https://maksymstoianov.com"
},
"license": "Apache-2.0",
"type": "module",
"bugs": {
"url": "https://github.com/bootgs/boot/issues"
},
"homepage": "https://github.com/bootgs/boot#readme",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/MaksymStoianov"
},
{
"type": "buy_me_a_coffee",
"url": "https://buymeacoffee.com/MaksymStoianov"
}
],
"devDependencies": {
"@eslint/json": "^0.14.0",
"@eslint/markdown": "^7.5.1",
"@types/google-apps-script": "^2.0.8",
"@types/node": "^25.0.9",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.5.2",
"husky": "^9.1.7",
"prettier": "^3.8.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
},
"engines": {
"node": ">=22.14.0"
},
"dependencies": {
"apps-script-utils": "^1.9.0",
"reflect-metadata": "^0.2.2"
}
}