-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.33 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.33 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
{
"logseq": {
"id": "logseq-echarts",
"title": "logseq-echarts",
"main": "dist/index.html",
"icon": "./icon.svg"
},
"name": "logseq-echarts",
"version": "1.3.0",
"description": "A plugin of logseq which integrates with [ECharts](https://echarts.apache.org/)",
"main": "dist/index.html",
"targets": {
"main": false
},
"scripts": {
"test": "jest",
"build": "parcel build --no-source-maps src/index.html --public-url ./",
"dev": "parcel watch src/index.html --public-url ./",
"fix": "prettier -w . && eslint src/**/*.ts --fix",
"lint": "prettier -c .",
"prepare": "husky install"
},
"lint-staged": {
"src/**/*{.ts,.tsx,.html}": [
"npm run lint"
],
"./*{.md,.yaml,.json}": [
"prettier -c ."
]
},
"keywords": [],
"author": "guzhongren",
"license": "MIT",
"dependencies": {
"@logseq/libs": "^0.0.17",
"echarts": "^6.0.0"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "8.59.2",
"@typescript-eslint/parser": "8.59.2",
"buffer": "^6.0.3",
"eslint": "10.3.0",
"husky": "9.1.7",
"jest": "^30.0.0",
"lint-staged": "17.0.2",
"parcel": "2.16.4",
"prettier": "3.8.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "5.9.3"
}
}