-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.42 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.42 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
{
"name": "fluenttyper",
"version": "2026.15.1",
"description": "Type less, do more. Get smart autocomplete, spell check, and text expansion to boost your productivity on any website.",
"type": "module",
"packageManager": "bun@1.3.10",
"scripts": {
"watch": "bun build.ts --mode=development --watch",
"build": "bun build.ts --mode=production",
"check": "bun run lint && bun run format:check && bun run typecheck",
"lint": "eslint . --cache --cache-location .cache/eslint --max-warnings=0",
"typecheck": "bun tsc --noEmit",
"test": "bun scripts/run-unit-tests.ts",
"test:e2e": "bun scripts/run-e2e.ts --suite=smoke",
"test:e2e:full": "bun scripts/run-e2e.ts --suite=full",
"test:e2e:dev": "bun scripts/run-e2e.ts --mode=development",
"check:e2e:coverage": "bun scripts/check-e2e-coverage.ts",
"update": "bun update --latest --recursive",
"preversion": "bun run test",
"version": "bun scripts/update-manifest-version.cjs",
"postversion": "git push && git push --tags",
"lint:fix": "bun run lint -- --fix",
"fix": "bun run lint:fix && bun run format",
"format": "prettier . --cache --write",
"format:check": "prettier . --cache --check",
"bump": "bun pm version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bartekplus/FluentTyper.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/bartekplus/FluentTyper/issues"
},
"homepage": "https://github.com/bartekplus/FluentTyper#readme",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@lexical/history": "^0.42.0",
"@lexical/plain-text": "^0.42.0",
"@lexical/rich-text": "^0.42.0",
"@lexical/utils": "^0.42.0",
"@mlc-ai/web-runtime": "^0.24.0-dev1",
"@mlc-ai/web-tokenizers": "^0.1.6",
"@mlc-ai/web-xgrammar": "^0.1.27",
"@types/chrome": "^0.1.38",
"@types/dom-navigation": "^1.0.7",
"@types/luxon": "^3.7.1",
"@webgpu/types": "^0.1.69",
"ckeditor5": "^47.6.1",
"eslint": "^10.1.0",
"glob": "^13.0.6",
"globals": "^17.4.0",
"jsdom": "^29.0.1",
"lexical": "^0.42.0",
"prettier": "^3.8.1",
"puppeteer": "^24.40.0",
"quill": "^2.0.3",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.82",
"buffer": "^6.0.3",
"csv-parse": "^6.2.1",
"csv-stringify": "^6.7.0",
"luxon": "^3.7.2"
}
}