This repository was archived by the owner on Jun 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.25 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.25 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
{
"name": "logseq-task-automation",
"version": "v0.3.0",
"title": "Task Automation",
"description": "A plugin that simplifies the process of initiating and completing tasks on Logseq.",
"logseq": {
"title": "Task Automation",
"icon": "./public/icon.png",
"id": "logseq-task-automation"
},
"main": "dist/index.html",
"targets": {
"main": false
},
"default": "dist/index.html",
"repository": "aiirobyte/logseq-task-automation",
"author": "aiirobyte",
"license": "MIT",
"scripts": {
"lint": "eslint src/*.ts",
"lint:fix": "eslint --fix src/*.ts",
"format": "prettier --write src/*.ts --config ./.prettierrc",
"build": "parcel build --no-source-maps ./public/index.html --public-url ./",
"watch": "parcel watch --no-source-maps ./public/index.html --public-url ./",
"clean": "rimraf dist"
},
"dependencies": {
"@logseq/libs": "^0.0.14",
"rimraf": "^4.4.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.2.1",
"parcel": "^2.0.0",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
}
}