typing-genius-content 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,53 @@
1
+ {
2
+ "name": "typing-genius-content",
3
+ "version": "1.0.0",
4
+ "description": "Open-source typing test content library - quotes, words in multiple languages for typing practice",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.mjs",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.mjs",
12
+ "require": "./dist/index.js"
13
+ },
14
+ "./content/*": "./content/*"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "content"
19
+ ],
20
+ "scripts": {
21
+ "build": "tsup src/index.ts --format cjs,esm --dts --clean",
22
+ "validate": "node scripts/validate.js",
23
+ "test": "vitest run",
24
+ "prepublishOnly": "npm run validate && npm run build"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/yourusername/typing-genius-content.git"
29
+ },
30
+ "keywords": [
31
+ "typing",
32
+ "typing-test",
33
+ "typing-practice",
34
+ "quotes",
35
+ "words",
36
+ "multilingual",
37
+ "kyrgyz",
38
+ "russian",
39
+ "english",
40
+ "keyboard-practice"
41
+ ],
42
+ "author": "Typing Genius",
43
+ "license": "MIT",
44
+ "devDependencies": {
45
+ "ajv": "^8.12.0",
46
+ "tsup": "^8.0.1",
47
+ "typescript": "^5.3.3",
48
+ "vitest": "^1.2.0"
49
+ },
50
+ "engines": {
51
+ "node": ">=16.0.0"
52
+ }
53
+ }