-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.23 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.23 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
{
"name": "fluenttyper",
"version": "2026.7.0",
"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",
"lint": "eslint . --cache --cache-location .cache/eslint --max-warnings=0",
"test": "bun test tests/*.test.ts tests/*.test.js tests/grammar/*.test.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",
"@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.37",
"@types/dom-navigation": "^1.0.7",
"@types/luxon": "^3.7.1",
"@webgpu/types": "^0.1.69",
"ckeditor5": "^47.5.0",
"eslint": "^10.0.2",
"glob": "^13.0.6",
"globals": "^17.4.0",
"jsdom": "^28.1.0",
"prettier": "^3.8.1",
"puppeteer": "^24.37.5",
"quill": "^2.0.3",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"dependencies": {
"@mlc-ai/web-llm": "^0.2.81",
"buffer": "^6.0.3",
"csv-parse": "^6.1.0",
"csv-stringify": "^6.6.0",
"luxon": "^3.7.2"
}
}