-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.93 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
{
"name": "sheethuahua",
"version": "3.1.0",
"description": "Type-safe Google Sheets and CSV parser for TypeScript and JavaScript",
"keywords": [
"Google Sheets",
"CSV",
"TypeScript"
],
"license": "MIT",
"homepage": "https://punchupworld.github.io/sheethuahua/",
"repository": {
"type": "git",
"url": "git+https://github.com/punchupworld/sheethuahua.git"
},
"bugs": "https://github.com/punchupworld/sheethuahua/issues",
"author": "Th1nkK1D <[email protected]>",
"exports": {
".": "./dist/index.js"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"scripts": {
"format": "prettier --write --ignore-unknown .",
"prepare": "husky",
"test": "bun test",
"build": "rm -rf dist && tsc && tsc-alias",
"lint": "eslint --fix src",
"release": "release-it",
"docs:collect": "typedoc",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"lint-staged": {
"*.ts": "eslint --fix",
"*": "prettier --write --ignore-unknown"
},
"dependencies": {
"@formkit/tempo": "^0.1.2",
"@sinclair/typebox": "^0.33.19",
"d3-dsv": "^3.0.1"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@release-it/conventional-changelog": "^8.0.1",
"@types/bun": "latest",
"@types/d3-dsv": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"bun-plugin-dts": "^0.2.3",
"eslint": "^8.57.0",
"eslint-plugin-tsdoc": "^0.2.17",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"prettier-plugin-organize-imports": "^3.2.4",
"publint": "^0.2.7",
"release-it": "^17.2.1",
"tsc-alias": "^1.8.8",
"typedoc": "^0.26.11",
"typedoc-plugin-markdown": "^4.2.9",
"typedoc-plugin-remark": "^1.0.3",
"typedoc-vitepress-theme": "^1.0.2",
"typescript": "^5.4.5",
"vitepress": "^1.4.2",
"vitepress-sidebar": "^1.28.0"
}
}