-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
49 lines (49 loc) · 1.38 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-chess",
"version": "1.5.1",
"description": "Render chessboards in your Logseq documents",
"keywords": [
"logseq",
"plugin",
"chess"
],
"author": "Sergey Storchay <r8@r8.com.ua>",
"repository": "https://github.com/r8/logseq-chess.git",
"license": "MIT",
"logseq": {
"id": "logseq-chess",
"main": "dist/index.html",
"icon": "./icon.png",
"title": "Logseq Chess"
},
"dependencies": {
"@logseq/libs": "^0.0.15",
"chess.js": "^1.0.0-beta.6",
"jotai": "^2.2.2",
"react": "17.0.2",
"react-chessboard": "^4.0.1",
"react-icons": "^4.10.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^10.0.1",
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/react": "^17.0.39",
"conventional-changelog-conventionalcommits": "^6.1.0",
"parcel": "latest",
"prettier": "3.0.0",
"semantic-release": "^21.0.7"
},
"alias": {
"react/jsx-dev-runtime": "./node_modules/react/jsx-dev-runtime.js",
"react/jsx-runtime": "./node_modules/react/jsx-runtime.js",
"react": "./src/shims/React.ts",
"react-dom": "./src/shims/ReactDOM.ts"
},
"scripts": {
"dev": "parcel serve ./index.html --public-url ./ --no-hmr",
"build": "parcel build ./index.html --public-url .",
"fix": "prettier . --write"
}
}