fixnow 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,70 @@
1
+ {
2
+ "name": "fixnow",
3
+ "version": "1.0.0",
4
+ "description": "Tiny multilingual spell checker with suggestions. Arabic, German, Spanish, French and Vietnamese dictionaries bundled — one install, zero runtime dependencies.",
5
+ "type": "module",
6
+ "main": "./dist/index.cjs",
7
+ "module": "./dist/index.js",
8
+ "types": "./dist/index.d.ts",
9
+ "exports": {
10
+ ".": {
11
+ "import": {
12
+ "types": "./dist/index.d.ts",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
19
+ }
20
+ },
21
+ "files": [
22
+ "dist",
23
+ "dictionaries"
24
+ ],
25
+ "sideEffects": false,
26
+ "scripts": {
27
+ "build": "tsup",
28
+ "clean": "rm -rf dist",
29
+ "prepublishOnly": "npm run build",
30
+ "test": "node test/smoke.mjs"
31
+ },
32
+ "keywords": [
33
+ "spell",
34
+ "spellcheck",
35
+ "spelling",
36
+ "spell-checker",
37
+ "dictionary",
38
+ "cspell",
39
+ "suggestions",
40
+ "typo",
41
+ "i18n",
42
+ "arabic",
43
+ "german",
44
+ "spanish",
45
+ "french",
46
+ "vietnamese"
47
+ ],
48
+ "author": "Gohit X (bastndev)",
49
+ "license": "MIT",
50
+ "homepage": "https://github.com/bastndev/fixnow#readme",
51
+ "repository": {
52
+ "type": "git",
53
+ "url": "git+https://github.com/bastndev/fixnow.git"
54
+ },
55
+ "bugs": {
56
+ "url": "https://github.com/bastndev/fixnow/issues"
57
+ },
58
+ "publishConfig": {
59
+ "access": "public"
60
+ },
61
+ "engines": {
62
+ "node": ">=20"
63
+ },
64
+ "devDependencies": {
65
+ "@types/node": "^26.0.0",
66
+ "cspell-trie-lib": "^10.0.1",
67
+ "tsup": "^8.5.1",
68
+ "typescript": "^5.9.3"
69
+ }
70
+ }