-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.22 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
{
"name": "git-sync-js",
"version": "2.0.5",
"description": "JS implementation for Git-Sync, a handy script that backup your notes in a git repo to the remote git services.",
"homepage": "https://github.com/linonetwo/git-sync-js",
"bugs": {
"url": "https://github.com/linonetwo/git-sync-js/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linonetwo/git-sync-js.git"
},
"license": "MIT",
"author": "Lin Onetwo <[email protected]> (https://github.com/linonetwo)",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src/"
],
"scripts": {
"prepublishOnly": "npm run clean && npm run test && npm run lint && npm run compile",
"test": "npm run clean:test && jest",
"clean": "rimraf --no-glob dist",
"clean:test": "rimraf test/mockRepo test/mockRepo2 test/mockUpstreamRepo",
"compile": "tsc",
"docs": "docs-ts",
"lint": "eslint --ext ts .",
"lint:fix": "eslint --ext ts --fix .",
"docs:build": "docusaurus build",
"docs:dev": "docusaurus start",
"docs:generate": "npm run docs:generate:api && npm run docs:generate:copy",
"docs:generate:api": "rimraf docs/api && typedoc --options typedoc.json",
"docs:generate:copy": "zx scripts/copy-readme.mjs"
},
"dependencies": {
"dugite": "^2.5.2",
"fs-extra": "^11.2.0",
"isomorphic-git": "^1.25.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@docusaurus/core": "^3.0.1",
"@docusaurus/preset-classic": "^3.0.1",
"@docusaurus/types": "^3.0.1",
"@mdx-js/react": "^3.0.0",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/lodash": "^4.14.202",
"@types/node": "^20.10.6",
"docs-ts": "^0.8.0",
"dprint": "^0.45.0",
"eslint-config-tidgi": "latest",
"eslint-plugin-jest-extended": "^2.0.0",
"jest": "^29.7.0",
"jest-extended": "^4.0.2",
"jest-matcher-utils": "^29.7.0",
"prism-react-renderer": "^2.3.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typedoc": "^0.25.4",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.3.3",
"zx": "^7.2.3"
},
"keywords": [
"git,sync,notebook,commit,rebase,note"
]
}