-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
57 lines (57 loc) · 1.61 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
{
"name": "kanji-frequency",
"version": "0.0.0",
"description": "Kanji usage frequency data and visualizations",
"author": "Dmitry Shpika",
"private": true,
"license": "CC-BY-4.0",
"engines": {
"node": "^18.13.0"
},
"keywords": [
"kanji",
"han",
"character",
"frequency",
"japanese",
"cjk"
],
"repository": {
"type": "git",
"url": "https://github.com/scriptin/kanji-frequency.git"
},
"scripts": {
"dev": "astro dev",
"start": "astro dev",
"build": "astro build",
"preview": "astro preview",
"astro": "astro",
"aozora:download": "node scripts/aozora/download.js",
"aozora:gaiji:extract": "node scripts/aozora/gaijiExtract.js",
"aozora:gaiji:replacements": "node scripts/aozora/gaijiReplacements.js",
"aozora:clean": "node scripts/aozora/clean.js",
"aozora:count": "node scripts/aozora/count.js",
"wikipedia:fetch": "node scripts/wikipedia/fetch.js",
"wikipedia:count": "node scripts/wikipedia/count.js",
"news:wikinews:fetch": "node scripts/news/wikinews_fetch.js",
"news:count": "node scripts/news/count.js",
"news:dates": "node scripts/news/dates.js"
},
"dependencies": {
"@astrojs/mdx": "^3.1.8",
"@astrojs/tailwind": "^5.1.2",
"@rollup/plugin-dsv": "^3.0.2",
"@scriptin/is-han": "^1.0.1",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.6",
"astro": "^4.16.2",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@types/xml-flow": "^1.0.1",
"prettier": "^2.8.2",
"puppeteer": "^22.13.0",
"typescript": "^5.2.2",
"xml-flow": "^1.0.4"
}
}