You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
monaco-editor/package.json

32 lines
1.2 KiB
JSON

{
"name": "monaco-typescript",
"version": "3.1.0",
"description": "TypeScript and JavaScript language support for Monaco Editor",
"scripts": {
"test": "mocha",
"compile-amd": "mcopy ./src/lib/typescriptServices-amd.js ./release/dev/lib/typescriptServices.js && tsc -p ./src/tsconfig.json",
"compile-esm": "mcopy ./src/lib/typescriptServices.js ./release/esm/lib/typescriptServices.js && tsc -p ./src/tsconfig.esm.json",
"compile": "mrmdir ./release && npm run compile-amd && npm run compile-esm",
"watch": "tsc -p ./src --watch",
"prepublish": "npm run compile && node ./scripts/bundle && mcopy ./src/monaco.d.ts ./release/monaco.d.ts",
"import-typescript": "node ./scripts/importTypescript"
},
"author": "Microsoft Corporation",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/monaco-typescript"
},
"bugs": {
"url": "https://github.com/Microsoft/monaco-typescript/issues"
},
"devDependencies": {
"mocha": "^5.2.0",
"monaco-editor-core": "0.12.0",
"monaco-plugin-helpers": "^1.0.2",
"requirejs": "^2.3.5",
"typescript": "3.0.1",
"uglify-js": "^3.4.6"
}
}