-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.2 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.2 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
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
{
"name": "tally",
"version": "4.0.0",
"description": "Your favorite dark mode word counter, now with even more themes! Count the number of characters, words, sentences, paragraphs, and lines in your text instantly with Tally.",
"keywords": [
"character counter",
"word counter",
"sentence counter",
"paragraph counter",
"line counter",
"text analysis",
"text analyzer",
"text statistics",
"online tool"
],
"homepage": "https://johng.io/p/tally",
"bugs": "https://github.com/caret-collective/Tally/issues",
"license": "AGPL-3.0-only",
"author": {
"name": "John Goodliff",
"url": "https://johng.io"
},
"funding": [
{
"type": "individual",
"url": "https://johng.io/funding"
},
{
"type": "GitHub Sponsors",
"url": "https://github.com/sponsors/twocaretcat"
},
{
"type": "Patreon",
"url": "https://patreon.com/twocaretcat"
},
{
"type": "Brave Creators",
"url": "https://publishers.basicattentiontoken.org/en/c/johng"
}
],
"private": true,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/caret-collective/Tally.git"
},
"scripts": {
"dev": "astro dev",
"build": "astro build",
"preview": "astro preview",
"serve": "astro preview",
"typecheck": "astro check",
"format:check": "prettier --check .",
"format:write": "prettier --write ."
},
"trustedDependencies": [
"tally-ts",
"astro-snapshot",
"puppeteer"
],
"devDependencies": {
"@astrojs/check": "^0.9.6",
"@types/bun": "latest",
"prettier": "^3.8.1",
"prettier-plugin-astro": "^0.14.1",
"prettier-plugin-astro-organize-imports": "^0.4.11",
"typescript": "^5.9.3"
},
"dependencies": {
"@astrojs/markdoc": "0.15.10",
"@astrojs/sitemap": "3.7.0",
"@lucide/astro": "^0.563.0",
"@nanostores/logger": "^1.0.0",
"@nanostores/persistent": "^1.3.0",
"@playform/compress": "^0.2.1",
"@twocaretcat/astro-snapshot": "npm:@jsr/twocaretcat__astro-snapshot@^2.1.0",
"@twocaretcat/tally-ts": "npm:@jsr/twocaretcat__tally-ts@^2.0.0",
"astro": "5.18.1",
"astro-better-image-service": "^2.1.10",
"astro-capo": "^0.0.1",
"astro-robots-txt": "^1.0.0",
"harper.js": "^1.5.1",
"nanostores": "^1.1.0",
"radashi": "^12.7.1",
"sharp": "^0.34.5"
}
}