71 lines
1.7 KiB
JSON
71 lines
1.7 KiB
JSON
{
|
|
"name": "vscode-kanbn",
|
|
"version": "0.1.0",
|
|
"engines": {
|
|
"vscode": "^1.23.0"
|
|
},
|
|
"publisher": "basementuniverse",
|
|
"activationEvents": [
|
|
"onStartupFinished"
|
|
],
|
|
"main": "./build/ext-src/extension.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "kanbn.init",
|
|
"title": "Initialise kanbn",
|
|
"category": "Kanbn"
|
|
},
|
|
{
|
|
"command": "kanbn.board",
|
|
"title": "Open board",
|
|
"category": "Kanbn"
|
|
},
|
|
{
|
|
"command": "kanbn.addTask",
|
|
"title": "Add task",
|
|
"category": "Kanbn"
|
|
}
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@basementuniverse/kanbn": "^0.2.4",
|
|
"dateformat": "^4.5.1",
|
|
"formik": "^2.2.6",
|
|
"git-user-name": "^2.0.0",
|
|
"param-case": "^3.0.4",
|
|
"react": "^16.3.2",
|
|
"react-beautiful-dnd": "12.2.0",
|
|
"react-dom": "^16.3.2",
|
|
"terser": "3.14.1",
|
|
"uuid": "^8.3.2",
|
|
"vscode": "^1.1.37",
|
|
"vscode-codicons": "^0.0.15"
|
|
},
|
|
"scripts": {
|
|
"vscode:prepublish": "./scripts/build-non-split.js && tsc -p tsconfig.extension.json",
|
|
"postinstall": "node ./node_modules/vscode/bin/install",
|
|
"start": "react-scripts start",
|
|
"build": "./scripts/build-non-split.js && tsc -p tsconfig.extension.json",
|
|
"test": "react-scripts test --env=jsdom",
|
|
"eject": "react-scripts eject"
|
|
},
|
|
"devDependencies": {
|
|
"@types/dateformat": "^3.0.1",
|
|
"@types/git-user-name": "^2.0.0",
|
|
"@types/jest": "^23.3.14",
|
|
"@types/lodash": "^4.14.168",
|
|
"@types/node": "^10.17.56",
|
|
"@types/uuid": "^8.3.0",
|
|
"react-scripts": "^2.1.8",
|
|
"rewire": "^4.0.1",
|
|
"typescript": "^4.0.2"
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
]
|
|
}
|