-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.23 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
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
{
"name": "tiled",
"displayName": "TILed",
"description": "TILed is medium to share your day to day learning with the world.",
"version": "0.0.4",
"publisher": "rahuldhawani",
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Other"
],
"keywords": [
"TIL",
"share",
"learn",
"today-i-learned",
"learning"
],
"icon": "static/icon.png",
"repository": "https://github.com/rahuldhawani/TILed",
"activationEvents": [
"onCommand:til.activiate"
],
"main": "./out/extension/extension",
"contributes": {
"commands": [
{
"command": "til.activiate",
"title": "TIL"
}
],
"keybindings": [
{
"command": "til.activiate",
"key": "shift+alt+t",
"mac": "shift+alt+t",
"when": "editorFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"dev": "webpack --mode development --watch --config ./webpack.config.js",
"build": "npm run compile && webpack --mode production --config ./webpack.config.js"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-proposal-class-properties": "^7.0.0",
"@babel/plugin-syntax-dynamic-import": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.0.0",
"@types/draft-js": "^0.10.25",
"@types/mocha": "^2.2.42",
"@types/node": "^7.0.43",
"@types/prismjs": "^1.9.0",
"@types/react": "^16.4.6",
"@types/react-dom": "^16.0.6",
"@types/react-textarea-autosize": "^4.3.3",
"babel-loader": "^8.0.0",
"css-loader": "^1.0.0",
"mini-css-extract-plugin": "^0.4.3",
"node-sass": "^4.9.3",
"raw-loader": "^0.5.1",
"sass-loader": "^7.1.0",
"tslint": "^5.8.0",
"tslint-config-prettier": "^1.15.0",
"tslint-react": "^3.6.0",
"typescript": "^2.6.1",
"vscode": "^1.1.22",
"webpack": "^4.15.1",
"webpack-assets-manifest": "^3.0.1",
"webpack-cli": "^3.0.8"
},
"peerDependencies": {
"draft-js": "^0.10.5",
"draft-js-plugins-editor": "^2.1.1",
"react": "^16.4.1",
"react-dom": "^16.4.1"
},
"dependencies": {
"antd": "^3.9.2",
"draft-js-code-editor-plugin": "0.2.1",
"draft-js-focus-plugin": "^2.1.0",
"draft-js-image-plugin": "2.0.0-rc8",
"draft-js-import-markdown": "^1.2.1",
"draft-js-linkify-plugin": "^2.0.0-beta1",
"draft-js-markdown-plugin": "^3.0.4",
"draft-js-prism-plugin": "0.1.3",
"draftjs-to-markdown": "^0.5.1",
"markdown-draft-js": "^1.1.6",
"prismjs": "^1.15.0",
"react-textarea-autosize": "^7.0.4",
"vscode-cache": "^0.3.0"
}
}