-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
executable file
·86 lines (86 loc) · 2.69 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "logseq-copliot",
"version": "1.6.0",
"description": "Logseq Copilot, Connect with you logseq API server, bring your information when you browsing.",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/eindex/logseq-copliot.git"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage --passWithNoTests --coverageDirectory coverage",
"build": "node build.mjs",
"start": "chokidar src -c 'pnpm run build'",
"prettier": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"prepare": "husky install",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"publish:edge": "node pipeline/edge-addon-publish.mjs",
"publish:firefox": "web-ext sign -s build/firefox"
},
"dependencies": {
"@chakra-ui/react": "^2.8.2",
"@tabler/icons-react": "^2.12.0",
"@tailwindcss/typography": "^0.5.9",
"@thedutchcoder/postcss-rem-to-px": "^0.0.2",
"date-fns": "^2.29.3",
"date-fns-tz": "^2.0.0",
"liquidjs": "^10.8.4",
"marked": "^4.3.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.3.1",
"turndown": "^7.1.1"
},
"devDependencies": {
"@plasmohq/edge-addons-api": "^1.2.0",
"@types/jest": "^29.5.2",
"@types/marked": "^4.0.8",
"@types/mocha": "^10.0.1",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.10",
"@types/turndown": "^5.0.1",
"@types/webextension-polyfill": "^0.10.0",
"archiver": "^5.3.1",
"autoprefixer": "^10.4.13",
"axios": "^1.7.7",
"chokidar-cli": "^3.0.0",
"css-loader": "^6.7.3",
"dotenv": "^16.0.3",
"esbuild": "^0.17.19",
"esbuild-jest": "^0.5.0",
"esbuild-style-plugin": "^1.6.1",
"eslint": "^8.31.0",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-import": "^2.27.4",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"fs-extra": "^11.1.0",
"html-loader": "^4.2.0",
"husky": "^8.0.3",
"jest": "^29.6.1",
"jest-webextension-mock": "^3.8.9",
"mockzilla": "^0.14.0",
"postcss-rem-to-pixel": "^4.1.2",
"prettier": "^2.8.3",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.7",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"source-map-loader": "^3.0.1",
"style-loader": "^3.3.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.2",
"type-fest": "^3.5.2",
"typescript": "^4.9.4",
"vitepress": "^1.3.4",
"vue": "^3.5.8",
"web-ext": "^7.12.0",
"webextension-polyfill": "^0.10.0"
}
}