2019-12-20 11:12:22 +08:00
|
|
|
{
|
2020-01-03 15:56:19 +08:00
|
|
|
"name": "autoCommit",
|
2020-01-03 15:12:02 +08:00
|
|
|
"displayName": "Auto Commit",
|
2019-12-26 17:47:37 +08:00
|
|
|
"description": "自动提交commit到github",
|
2020-01-02 15:20:07 +08:00
|
|
|
"publisher": "OBKoro1",
|
2020-01-16 20:27:55 +08:00
|
|
|
"version": "1.0.3",
|
2019-12-20 11:12:22 +08:00
|
|
|
"scripts": {
|
2019-12-26 20:56:51 +08:00
|
|
|
"build": "vsce package",
|
|
|
|
"vscode:prepublish": "webpack --mode production",
|
|
|
|
"compile": "webpack --mode none",
|
|
|
|
"watch": "webpack --mode none --watch",
|
2019-12-26 17:47:37 +08:00
|
|
|
"pretest": "npm run compile",
|
2019-12-26 20:56:51 +08:00
|
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
|
|
"test": "yarn run compile && node ./node_modules/vscode/bin/test"
|
2019-12-20 11:12:22 +08:00
|
|
|
},
|
2020-01-02 15:20:07 +08:00
|
|
|
"homepage": "https://github.com/OBKoro1/autoCommit",
|
2020-01-10 17:02:53 +08:00
|
|
|
"license": "MIT",
|
2020-01-02 15:20:07 +08:00
|
|
|
"author": {
|
|
|
|
"name": "OBKoro1",
|
|
|
|
"email": "obkoro1@foxmail.com",
|
|
|
|
"url": "http://obkoro1.com/web_accumulate/"
|
|
|
|
},
|
2020-01-03 15:12:02 +08:00
|
|
|
"icon": "images/icon.png",
|
2020-01-02 15:20:07 +08:00
|
|
|
"galleryBanner": {
|
|
|
|
"color": "#3B4859",
|
|
|
|
"theme": "dark"
|
2019-12-26 21:05:27 +08:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/OBKoro1/autoCommit"
|
2019-12-20 11:12:22 +08:00
|
|
|
},
|
2020-01-02 15:20:07 +08:00
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/OBKoro1/koro1FileHeader/issues",
|
|
|
|
"email": "obkoro1@foxmail.com"
|
|
|
|
},
|
2019-12-26 17:47:37 +08:00
|
|
|
"categories": [
|
|
|
|
"Other"
|
|
|
|
],
|
|
|
|
"activationEvents": [
|
|
|
|
"onCommand:extension.autoCommit"
|
|
|
|
],
|
2019-12-26 21:05:27 +08:00
|
|
|
"main": "./out/extension.js",
|
2019-12-26 17:47:37 +08:00
|
|
|
"contributes": {
|
|
|
|
"commands": [
|
|
|
|
{
|
|
|
|
"command": "extension.autoCommit",
|
2020-01-03 15:12:02 +08:00
|
|
|
"title": "控制Github绿色格子的commit数量",
|
|
|
|
"category": "auto commit Github自动提交 "
|
2019-12-26 17:47:37 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
2020-01-02 15:20:07 +08:00
|
|
|
"engines": {
|
|
|
|
"vscode": "^1.41.0"
|
|
|
|
},
|
2019-12-26 17:47:37 +08:00
|
|
|
"keywords": [
|
2020-01-02 15:20:07 +08:00
|
|
|
"vscode autoCommit",
|
|
|
|
"autoCommit",
|
|
|
|
"auto commit",
|
|
|
|
"autocommit",
|
|
|
|
"自动commit",
|
|
|
|
"vscode 自动commit",
|
|
|
|
"vscode github",
|
|
|
|
"vscode commit",
|
|
|
|
"github commit",
|
|
|
|
"github autoCommit",
|
|
|
|
"git commit",
|
2020-01-02 17:19:47 +08:00
|
|
|
"自动提交",
|
|
|
|
"git 自动提交",
|
|
|
|
"github 自动提交",
|
2020-01-02 15:20:07 +08:00
|
|
|
"git",
|
|
|
|
"github",
|
|
|
|
"commit",
|
|
|
|
"koro1",
|
2019-12-26 17:47:37 +08:00
|
|
|
"obkoro1",
|
2020-01-02 15:20:07 +08:00
|
|
|
"github 自动commit"
|
2019-12-26 17:47:37 +08:00
|
|
|
],
|
|
|
|
"devDependencies": {
|
|
|
|
"@types/glob": "^7.1.1",
|
|
|
|
"@types/mocha": "^5.2.7",
|
|
|
|
"@types/node": "^12.11.7",
|
|
|
|
"@types/vscode": "^1.41.0",
|
2019-12-26 20:56:51 +08:00
|
|
|
"copy-webpack-plugin": "^5.1.1",
|
2019-12-26 17:47:37 +08:00
|
|
|
"glob": "^7.1.5",
|
|
|
|
"mocha": "^6.2.2",
|
2019-12-26 20:56:51 +08:00
|
|
|
"ts-loader": "^6.2.1",
|
2019-12-26 17:47:37 +08:00
|
|
|
"tslint": "^5.20.0",
|
2019-12-26 20:56:51 +08:00
|
|
|
"typescript": "^3.6.4",
|
|
|
|
"vscode": "^1.1.36",
|
|
|
|
"webpack": "^4.41.4",
|
|
|
|
"webpack-cli": "^3.3.10"
|
2019-12-20 11:12:22 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"moment": "^2.24.0"
|
|
|
|
}
|
|
|
|
}
|