-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.52 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
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "logseq-datenlp-plugin",
"author": "benjypng",
"description": "Auto-insert dates using NLP.",
"license": "MIT",
"logseq": {
"id": "logseq-datenlp-plugin",
"title": "logseq-datenlp-plugin",
"icon": "./icon.svg",
"main": "dist/index.html"
},
"scripts": {
"dev": "npx vite",
"build": "pnpm run build:css && npx tsc && npx vite build",
"preview": "npx vite preview",
"build:css": "npx tailwindcss -i ./src/tailwind.css -o ./src/output.css",
"lint": "npx eslint . --fix"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/github",
{
"assets": [
"logseq-datenlp-plugin.zip"
]
}
]
]
},
"dependencies": {
"@logseq/libs": "^0.0.15",
"chrono-node": "^2.7.6",
"date-fns": "^3.6.0",
"logseq-dateutils": "^2.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1"
},
"devDependencies": {
"@eslint/js": "^9.6.0",
"@types/eslint": "^8.56.10",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.9",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-simple-import-sort": "^12.1.1",
"prettier": "^3.3.2",
"tailwindcss": "^3.4.4",
"typescript": "^5.5.3",
"typescript-eslint": "^7.15.0",
"vite": "^4.5.3",
"vite-plugin-logseq": "^1.1.2",
"vite-tsconfig-paths": "^4.3.2"
}
}