-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.02 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
{
"name": "logseq-crypto",
"version": "0.1.2",
"description": "Simple encryption for logseq pages",
"scripts": {
"dev": "parcel src/index.html --public-url ./",
"build": "parcel build src/index.html --public-url ./"
},
"keywords": [],
"author": "tejonaco",
"license": "MIT",
"dependencies": {
"@logseq/libs": "^0.0.17",
"ts-standard": "^12.0.2"
},
"devDependencies": {
"buffer": "^5.5.0||^6.0.0",
"crypto-browserify": "^3.12.0",
"events": "^3.1.0",
"parcel": "^2.12.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"typescript": "^5.4.5",
"vm-browserify": "^1.1.2"
},
"logseq": {
"title": "Logseq Crypto",
"id": "logseq-crypto",
"main": "dist/index.html",
"icon": "assets/icon.png"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.json",
"@typescript-eslint/strict-boolean-expressions": "false"
},
"extends": [
"./node_modules/ts-standard/eslintrc.json"
]
}
}