forked from EdieLemoine/google-docs-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.19 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
{
"name": "@edielemoine/google-docs-importer",
"version": "2.2.0",
"description": "Imports Google docs documents and saves them to JSON.",
"keywords": [
"google-docs",
"importer",
"json"
],
"repository": {
"type": "git",
"url": "https://github.com/EdieLemoine/google-docs-importer"
},
"license": "MIT",
"author": "Edie Lemoine <[email protected]>",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./dist/bin.js",
"files": [
"bin",
"dist",
"src"
],
"scripts": {
"build": "tsup-node",
"clean": "rimraf dist coverage",
"prepare": "is-ci || husky install",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:serve": "vitest"
},
"lint-staged": {
"package.json": "npx -q sort-package-json",
"src/**/*.ts": "eslint --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"dependencies": {
"csv-parse": "^5.3.0",
"debug": "^4.3.4",
"dotenv": "^16.0.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/debug": "^4.1.8",
"@types/node": "^20.10.3",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/coverage-v8": "^1.0.1",
"chalk": "^5.3.0",
"commander": "^11.0.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"semantic-release": "^22.0.0",
"tsup": "^7.1.0",
"typescript": "^5.1.6",
"vite": "^5.0.0",
"vitest": "^1.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">= 18"
},
"publishConfig": {
"access": "public"
},
"volta": {
"node": "20.10.0"
}
}