-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.49 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
{
"name": "autocorrect-for-logseq",
"version": "0.1.0",
"description": "Fast, conservative autocorrect while typing in Logseq (UK English)",
"main": "dist/index.js",
"scripts": {
"prebuild": "npm run inline-dict",
"build": "npm run build:esbuild && npm run copy-files",
"build:esbuild": "esbuild src/index.ts --bundle --format=iife --outfile=dist/index.js --platform=browser --external:@logseq/libs",
"build:tsc": "tsc",
"copy-files": "node scripts/copy-files.js",
"inline-dict": "ts-node scripts/inline-dict.ts",
"watch": "npm run build:esbuild -- --watch",
"build-dict": "ts-node scripts/build-dict.ts",
"clean": "rimraf dist"
},
"keywords": [
"logseq",
"autocorrect",
"spellcheck",
"uk-english"
],
"author": "jonclemo",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jonclemo/autocorrect-for-logseq.git"
},
"bugs": {
"url": "https://github.com/jonclemo/autocorrect-for-logseq/issues"
},
"homepage": "https://github.com/jonclemo/autocorrect-for-logseq#readme",
"readme": "README.md",
"icon": "./assets/icon_autocorrect_logseq.png",
"logseq": {
"id": "autocorrect-for-logseq",
"title": "Autocorrect for Logseq",
"icon": "./assets/icon_autocorrect_logseq.png"
},
"dependencies": {
"@logseq/libs": "^0.2.10"
},
"devDependencies": {
"@types/node": "^20.10.0",
"esbuild": "^0.19.11",
"rimraf": "^6.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}