forked from coddx-hq/coddx-alpha
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.67 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.67 KB
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "coddx-alpha",
"displayName": "TODO.md Kanban Board",
"description": "Coddx - a collection of tools that help developers program efficiently. Some useful features like: Kanban Board to manage project tasks in TODO.md, generating multiple files from templates quickly.",
"version": "0.2.55",
"publisher": "coddx",
"license": "MIT",
"homepage": "https://github.com/coddx-hq",
"repository": {
"type": "git",
"url": "https://github.com/coddx-hq/coddx-alpha.git"
},
"keywords": [
"todo",
"todolist",
"kanban",
"task",
"project",
"management",
"generate",
"generator",
"template",
"webdev",
"snippet",
"file"
],
"icon": "docs/media/logo.png",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Extension Packs",
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"onCommand:extension.viewconfig",
"onCommand:extension.taskboard"
],
"main": "./out/extension.js",
"contributes": {
"languages": [],
"commands": [
{
"command": "extension.viewconfig",
"title": "Generate files",
"category": "Coddx"
},
{
"command": "extension.taskboard",
"title": "TODO.md Kanban Task Board",
"category": "Coddx"
}
],
"menus": {
"explorer/context": [
{
"command": "extension.viewconfig"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "npm-run-all compile:*",
"watch": "npm-run-all -p watch:*",
"compile:extension": "rm -rf out && tsc --jsx react -p ./",
"compile:views": "webpack --mode development",
"watch:extension": "tsc --jsx react -watch -p ./",
"watch:views": "webpack --watch --mode development",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/marked": "^2.0.2",
"@types/mocha": "^2.2.42",
"@types/node": "^10.12.21",
"@types/react": "^16.9.0",
"@types/react-dom": "^16.9.0",
"css-loader": "^3.0.0",
"npm-run-all": "^4.1.5",
"style-loader": "^0.23.1",
"ts-loader": "^6.0.4",
"tslint": "^5.12.1",
"typescript": "^3.3.1",
"vscode": "^1.1.37",
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
},
"dependencies": {
"marked": "^2.0.4",
"nunjucks": "^3.2.0",
"prismjs": "^1.19.0",
"react": "^16.13.0",
"react-autosize-textarea": "^7.0.0",
"react-beautiful-dnd": "^13.0.0",
"react-dom": "^16.13.0",
"react-select": "^3.1.0",
"react-simple-code-editor": "^0.11.0",
"styled-components": "^5.0.1"
}
}