forked from chaosarium/lwt
-
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.69 KB
/
package.json
File metadata and controls
102 lines (102 loc) · 2.69 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "lwt",
"version": "3.1.0",
"description": "Learning with Texts - A self-hosted language learning application for reading-based vocabulary acquisition",
"type": "module",
"main": "index.js",
"homepage": "https://hugofara.github.io/lwt/",
"repository": {
"type": "git",
"url": "git+https://github.com/HugoFara/lwt.git"
},
"bugs": {
"url": "https://github.com/HugoFara/lwt/issues"
},
"author": {
"name": "HugoFara",
"url": "https://github.com/HugoFara"
},
"contributors": [
{
"name": "lang-learn-guy",
"url": "https://sourceforge.net/u/lang-learn-guy/profile/"
}
],
"license": "Unlicense",
"keywords": [
"lwt",
"language-learning",
"spaced-repetition",
"vocabulary",
"reading",
"self-hosted",
"education"
],
"engines": {
"node": ">=18.0.0"
},
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"build:themes": "node scripts/build-themes.js",
"build:pwa-icons": "node scripts/generate-pwa-icons.js",
"build:all": "npm run build && npm run build:themes",
"preview": "vite preview",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"typecheck": "tsc --noEmit",
"e2e": "cypress run",
"cy:open": "cypress open",
"cy:run": "cypress run",
"docs:dev": "node scripts/docs-pre-build.js && vitepress dev docs-src",
"docs:build": "node scripts/docs-pre-build.js && vitepress build docs-src",
"docs:preview": "vitepress preview docs-src"
},
"dependencies": {
"@alpinejs/csp": "^3.15.2",
"@yaireo/tagify": "^4.35.6",
"bulma": "^1.0.4",
"chart.js": "^4.5.1",
"dexie": "^4.2.1",
"lucide": "^1.7.0"
},
"overrides": {
"react": "18.3.1",
"react-dom": "18.3.1",
"esbuild": ">=0.25.0"
},
"devDependencies": {
"@eslint/css": "^1.1.0",
"@eslint/js": "^10.0.1",
"@eslint/markdown": "^8.0.1",
"@types/alpinejs": "^3.13.11",
"@types/node": "^25.5.2",
"@types/yaireo__tagify": "^4.27.0",
"@typescript-eslint/eslint-plugin": "^8.48.0",
"@typescript-eslint/parser": "^8.48.0",
"@vitest/coverage-v8": "^4.0.14",
"cypress": "^15.7.0",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.4.0",
"jiti": "^2.6.1",
"jsdom": "^29.0.1",
"prettier": "^3.6.2",
"purgecss": "^4.1.3",
"typedoc": "^0.28.16",
"typescript": "^6.0.2",
"typescript-eslint": "^8.48.0",
"vite": "^8.0.7",
"vitepress": "^1.6.4",
"vitest": "^4.0.14",
"vue": "^3.5.25"
}
}