generated from hron/logseq-sample-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.58 KB
/
package.json
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
{
"name": "logseq-cycle-todo-dwim",
"version": "1.1.0",
"description": "Ctrl+Enter with repeating timestamp support, similar to org-mode",
"author": "Aleksei Gusev <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "parcel ./index.html",
"build": "parcel build --public-url . --no-source-maps index.html",
"watch": "parcel watch --public-url . --no-source-maps index.html",
"e2e:prepare": "./scripts/e2e-prepare",
"e2e:logseq": "env HOME=`pwd`/tmp/user-home XDG_CONFIG_HOME=`pwd`/tmp/user-home/.config ./tmp/logseq.AppImage",
"test": "playwright test",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:fix": "prettier . --write"
},
"devDependencies": {
"@eslint/js": "^9.15.0",
"@playwright/test": "^1.48.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-conventionalcommits": "^7.0.2",
"cz-conventional-changelog": "^3.3.0",
"@types/luxon": "^3.4.2",
"@types/node": "^22.9.0",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.12.0",
"parcel": "2.9.3",
"playwright": "^1.48.2",
"prettier": "3.3.3",
"semantic-release": "^22.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.15.0"
},
"logseq": {
"main": "dist/index.html",
"icon": "./logo.webp",
"id": "cycle-todo-dwim",
"title": "Cycle TODO (Do What I Mean)"
},
"dependencies": {
"@logseq/libs": "^0.2.0",
"luxon": "^3.5.0"
}
}