-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 1.14 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
{
"name": "obsidian-stats",
"module": "src/index.ts",
"type": "module",
"scripts": {
"data:plugin:fetch": "bun run src/plugin/fetchData.ts",
"data:theme:fetch": "bun run src/theme/fetchData.ts",
"data:release:fetch": "bun run src/release/fetchData.ts",
"data:fetch": "bun run src/fetchData.ts",
"data:plugin:clone-repos": "bun run src/pluginRepo/cloneRepos.ts",
"data:plugin:process": "bun run src/pluginRepo/collectData.ts",
"data": "bun run data:fetch && bun run data:plugin:clone-repos && bun run data:plugin:process",
"format": "prettier --write ."
},
"devDependencies": {
"@types/bun": "latest",
"yaml": "^2.5.1"
},
"peerDependencies": {
"typescript": "^5.3.3"
},
"dependencies": {
"@lemons_dev/parsinom": "^0.0.12",
"@types/cli-progress": "^3.11.6",
"@types/semver": "^7.5.8",
"@types/slug": "^5.0.9",
"arquero": "^5.4.1",
"cli-progress": "^3.12.0",
"fast-dice-coefficient": "^1.0.3",
"fast-xml-parser": "^4.5.0",
"itertools-ts": "^1.27.1",
"prettier": "^3.3.3",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-svelte": "^3.2.6",
"semver": "^7.6.3",
"slug": "^8.2.3",
"string-argv": "^0.3.2"
}
}