-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 2.46 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
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
{
"name": "holysheets",
"version": "2.1.0",
"description": "A Node.js library for interacting with Google Sheets",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"type": "module",
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"test": "vitest",
"test:ci": "vitest --coverage",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"format": "prettier --write \"src/**/*.{ts,js,json,md}\"",
"commit": "cz",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/holy-sheets/holysheets.git"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
"@semantic-release/github",
"@semantic-release/git"
]
},
"keywords": [
"google",
"sheets",
"spreadsheet",
"api",
"holy sheets"
],
"author": "Teles",
"license": "MIT",
"peerDependencies": {
"googleapis": "^137.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.24.5",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/node": "^20.12.8",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^2.1.8",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-prettier": "^5.2.1",
"lcov-badge2": "^1.1.2",
"prettier": "^3.3.3",
"semantic-release": "^24.2.0",
"tsconfig-paths": "^4.2.0",
"tsup": "^8.3.5",
"typescript": "^5.4.5",
"vitepress": "^1.5.0",
"vitest": "^2.1.8"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"uuid": "^11.0.3"
}
}