-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.52 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.52 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
{
"name": "@trivious/sheets",
"version": "1.0.1",
"type": "module",
"description": "Google Sheets API wrapper module for Trivious framework",
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"package.json"
],
"scripts": {
"build": "tsup && tsc-alias",
"lint": "eslint --fix src",
"format": "prettier --write src",
"typecheck": "tsc --noEmit",
"test": "vitest run --pass-with-no-tests",
"coverage": "vitest run --coverage",
"dev": "tsup --watch",
"release": "semantic-release",
"prepare": "npm run build"
},
"keywords": [],
"author": "Commonly",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"packageManager": "pnpm@10.23.0",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.3",
"@types/node": "^25.0.3",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitest/coverage-v8": "^4.0.16",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"jsdoc": "^4.0.5",
"prettier": "^3.7.4",
"semantic-release": "^25.0.2",
"tsc-alias": "^1.8.16",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"dependencies": {
"google-auth-library": "^10.5.0",
"googleapis": "^169.0.0"
}
}