增加了git功能,但是还未完善
This commit is contained in:
182
node_modules/isomorphic-git/package.json
generated
vendored
Normal file
182
node_modules/isomorphic-git/package.json
generated
vendored
Normal file
@@ -0,0 +1,182 @@
|
||||
{
|
||||
"name": "isomorphic-git",
|
||||
"version": "1.35.1",
|
||||
"description": "A pure JavaScript reimplementation of git for node and browsers",
|
||||
"type": "module",
|
||||
"typings": "./index.d.cts",
|
||||
"main": "./index.cjs",
|
||||
"module": "./index.js",
|
||||
"exports": {
|
||||
".": {
|
||||
"types": "./index.d.cts",
|
||||
"default": "./index.cjs"
|
||||
},
|
||||
"./http/node": {
|
||||
"import": {
|
||||
"types": "./http/node/index.d.ts",
|
||||
"default": "./http/node/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./http/node/index.d.cts",
|
||||
"default": "./http/node/index.cjs"
|
||||
}
|
||||
},
|
||||
"./http/web": {
|
||||
"import": {
|
||||
"types": "./http/web/index.d.ts",
|
||||
"default": "./http/web/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./http/web/index.d.cts",
|
||||
"default": "./http/web/index.cjs"
|
||||
}
|
||||
},
|
||||
"./managers": {
|
||||
"import": {
|
||||
"types": "./managers/index.d.ts",
|
||||
"default": "./managers/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./managers/index.d.cts",
|
||||
"default": "./managers/index.cjs"
|
||||
}
|
||||
},
|
||||
"./models": {
|
||||
"import": {
|
||||
"types": "./models/index.d.ts",
|
||||
"default": "./models/index.js"
|
||||
},
|
||||
"require": {
|
||||
"types": "./models/index.d.cts",
|
||||
"default": "./models/index.cjs"
|
||||
}
|
||||
}
|
||||
},
|
||||
"unpkg": "./index.umd.min.js",
|
||||
"bin": {
|
||||
"isogit": "./cli.cjs"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"engines": {
|
||||
"node": ">=14.17"
|
||||
},
|
||||
"scripts": {
|
||||
"start": "nps",
|
||||
"format": "nps format",
|
||||
"build": "nps build",
|
||||
"test": "nps test",
|
||||
"publish-website": "nps website",
|
||||
"prepublishOnly": "nps prepublish",
|
||||
"semantic-release": "semantic-release",
|
||||
"add-contributor": "nps contributors.add"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/isomorphic-git/isomorphic-git.git"
|
||||
},
|
||||
"keywords": [
|
||||
"git",
|
||||
"isomorphic"
|
||||
],
|
||||
"author": "William Hilton <wmhilton@gmail.com>",
|
||||
"license": "MIT",
|
||||
"bugs": {
|
||||
"url": "https://github.com/isomorphic-git/isomorphic-git/issues"
|
||||
},
|
||||
"homepage": "https://isomorphic-git.org/",
|
||||
"files": [
|
||||
"cli.cjs",
|
||||
"http/*",
|
||||
"index.cjs",
|
||||
"index.d.cts",
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"index.umd.min.js",
|
||||
"index.umd.min.d.ts",
|
||||
"index.umd.min.js.map",
|
||||
"managers/*",
|
||||
"models/*"
|
||||
],
|
||||
"dependencies": {
|
||||
"async-lock": "^1.4.1",
|
||||
"clean-git-ref": "^2.0.1",
|
||||
"crc-32": "^1.2.0",
|
||||
"diff3": "0.0.3",
|
||||
"ignore": "^5.1.4",
|
||||
"minimisted": "^2.0.0",
|
||||
"pako": "^1.0.10",
|
||||
"pify": "^4.0.1",
|
||||
"readable-stream": "^4.0.0",
|
||||
"sha.js": "^2.4.12",
|
||||
"simple-get": "^4.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@isomorphic-git/cors-proxy": "^3.0.0",
|
||||
"@isomorphic-git/lightning-fs": "^3.3.0",
|
||||
"@isomorphic-git/pgp-plugin": "0.0.7",
|
||||
"@semantic-release/exec": "5.0.0",
|
||||
"@types/jest": "^30.0.0",
|
||||
"@types/node": "^20.19.16",
|
||||
"@zenfs/core": "^2.0.0",
|
||||
"agadoo": "2.0.0",
|
||||
"all-contributors-cli": "6.20.0",
|
||||
"bundlewatch": "^0.4.1",
|
||||
"cross-env": "6.0.0",
|
||||
"decompress": "^4.2.0",
|
||||
"diff-lines": "1.1.1",
|
||||
"duplicate-package-checker-webpack-plugin": "3.0.0",
|
||||
"envify": "4.1.0",
|
||||
"eslint": "^8.57.1",
|
||||
"eslint-config-prettier": "^7.2.0",
|
||||
"eslint-config-prettier-standard": "^4.0.1",
|
||||
"eslint-config-standard": "^17.1.0",
|
||||
"eslint-plugin-import": "^2.20.1",
|
||||
"eslint-plugin-node": "^11.0.0",
|
||||
"eslint-plugin-prettier": "^5.5.4",
|
||||
"eslint-plugin-promise": "^6.6.0",
|
||||
"eslint-plugin-standard": "^4.0.1",
|
||||
"git-http-mock-server": "2.0.0",
|
||||
"github-comment": "1.0.1",
|
||||
"inquirer": "^7.0.0",
|
||||
"jest": "^30.2.0",
|
||||
"jest-junit": "^15.0.0",
|
||||
"jest-puppeteer": "^11.0.0",
|
||||
"jsdoc-api": "5.0.3",
|
||||
"markdown-table": "^2.0.0",
|
||||
"nps": "^5.10.0",
|
||||
"nps-utils": "1.7.0",
|
||||
"prettier": "^3.6.2",
|
||||
"prettier-config-standard": "^1.0.1",
|
||||
"pretty-format": "24.9.0",
|
||||
"replace-in-file": "4.1.3",
|
||||
"rollup": "1.29.1",
|
||||
"rollup-plugin-node-resolve": "5.2.0",
|
||||
"rxjs": "^5.5.12",
|
||||
"semantic-release": "17.4.7",
|
||||
"standard": "^17.1.2",
|
||||
"timeout-cli": "0.3.2",
|
||||
"typescript": "^5.8.0",
|
||||
"webpack": "^5.0.1",
|
||||
"webpack-bundle-analyzer": "3.4.1",
|
||||
"webpack-cli": "^4.0.0"
|
||||
},
|
||||
"prettier": "./.prettierrc.cjs",
|
||||
"bundlewatch": {
|
||||
"files": [
|
||||
{
|
||||
"path": "./index.umd.min.js",
|
||||
"maxSize": "100kb"
|
||||
}
|
||||
],
|
||||
"ci": {
|
||||
"trackBranches": [
|
||||
"main"
|
||||
]
|
||||
}
|
||||
},
|
||||
"collective": {
|
||||
"type": "opencollective",
|
||||
"url": "https://opencollective.com/isomorphic-git",
|
||||
"logo": "https://opencollective.com/isomorphic-git/logo.txt"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user