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.
43 lines
1.7 KiB
JSON
43 lines
1.7 KiB
JSON
{
|
|
"name": "monaco-typescript",
|
|
"version": "4.4.0",
|
|
"description": "TypeScript and JavaScript language support for Monaco Editor",
|
|
"scripts": {
|
|
"compile-amd": "mcopy ./src/lib/typescriptServices-amd.js ./out/amd/lib/typescriptServices.js && tsc -p ./src/tsconfig.json",
|
|
"compile-esm": "mcopy ./src/lib/typescriptServices.js ./out/esm/lib/typescriptServices.js && tsc -p ./src/tsconfig.esm.json",
|
|
"compile": "mrmdir ./out && npm run compile-amd && npm run compile-esm && node ./scripts/dts && prettier --write ./monaco.d.ts",
|
|
"watch": "tsc -p ./src --watch",
|
|
"prepublishOnly": "mrmdir ./release && npm run compile && node ./scripts/release.js && node ./scripts/bundle && mcopy ./monaco.d.ts ./release/monaco.d.ts && mcopy ./out/esm/monaco.contribution.d.ts ./release/esm/monaco.contribution.d.ts && mcopy ./out/esm/fillers/monaco-editor-core.d.ts ./release/esm/fillers/monaco-editor-core.d.ts",
|
|
"import-typescript": "node ./scripts/importTypescript",
|
|
"prettier": "prettier --write ."
|
|
},
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Microsoft/monaco-typescript"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/monaco-typescript/issues"
|
|
},
|
|
"module": "./release/esm/monaco.contribution.js",
|
|
"typings": "./release/esm/monaco.contribution.d.ts",
|
|
"devDependencies": {
|
|
"@typescript/vfs": "^1.3.4",
|
|
"husky": "^5.1.3",
|
|
"monaco-editor-core": "^0.24.0",
|
|
"monaco-languages": "^2.4.0",
|
|
"monaco-plugin-helpers": "^1.0.3",
|
|
"prettier": "^2.2.1",
|
|
"pretty-quick": "^3.1.0",
|
|
"requirejs": "^2.3.6",
|
|
"terser": "^5.6.0",
|
|
"typescript": "^4.2.4"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "pretty-quick --staged"
|
|
}
|
|
}
|
|
}
|