-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.24 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
{
"name": "monaco-vscode-textmate-theme-converter",
"version": "0.1.7",
"description": "Converts VSCode themes to monaco editor themes.",
"author": "Nishkal <[email protected]>",
"repository": "https://github.com/Nishkalkashyap/monaco-vscode-textmate-theme-converter",
"homepage": "https://github.com/Nishkalkashyap/monaco-vscode-textmate-theme-converter",
"bugs": {
"url": "https://github.com/Nishkalkashyap/monaco-vscode-textmate-theme-converter/issues"
},
"main": "./lib/umd/index.js",
"keywords": [
"monaco-editor",
"monaco-textmate",
"monaco",
"editor",
"vscode"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc --module umd --outDir lib/umd",
"build-cjs": "tsc --module commonjs --outDir lib/cjs",
"prepublishOnly": "npm run build && npm run build-cjs"
},
"bin": {
"mvttc": "./lib/cjs/npx-script.js"
},
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.5",
"ts-node": "^8.1.0",
"typescript": "^3.4.5",
"monaco-editor": "^0.16.2"
},
"dependencies": {
"fs-extra": "^7.0.1",
"commander": "^8.1.0",
"tslib": "^2.3.0"
},
"peerDependencies": {
"tslib": "^2.0.1"
},
"types": "./lib/umd/index.d.ts"
}