-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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-plugin-leetcode",
"version": "0.0.1",
"description": "Batch fetch leetcode problems to your logseq.",
"main": "dist/index.html",
"targets": {
"main": false
},
"default": "dist/index.html",
"repository": {
"type": "git",
"url": "https://github.com/AlucPro/logseq-plugin-leetcode"
},
"author": "Alucard<jinxm.alucard@gmail.com>",
"scripts": {
"dev": "parcel ./index.html --public-url ./",
"build": "parcel build --public-url . --no-source-maps index.html"
},
"logseq": {
"id": "logseq-plugin-leetcode",
"title": "logseq plugin leetcode",
"icon": "./icon.png"
},
"dependencies": {
"@logseq/libs": "^0.0.12",
"leetcode-api-ts": "^1.1.1"
},
"devDependencies": {
"assert": "^2.0.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"https-browserify": "^1.0.0",
"parcel": "^2.0.0",
"path-browserify": "^1.0.1",
"querystring-es3": "^0.2.1",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"url": "^0.11.0"
}
}