microsoft/vscode-languagedetection
Publicmirrored fromhttps://github.com/microsoft/vscode-languagedetectionAvailable
package.json
42lines · modecode
| 1 | { |
| 2 | "name": "@vscode/vscode-languagedetection", |
| 3 | "version": "1.0.12", |
| 4 | "description": "An npm package that uses guesslang's ML model to detect source code languages", |
| 5 | "main": "dist/lib/index.js", |
| 6 | "module": "dist/lib/index.js", |
| 7 | "types": "dist/lib/index.d.ts", |
| 8 | "scripts": { |
| 9 | "clean": "rimraf dist", |
| 10 | "build": "npm run clean && webpack --mode production", |
| 11 | "watch": "npm run clean && webpack --watch", |
| 12 | "pretest": "npm run clean && tsc --build ./test", |
| 13 | "test": "mocha --recursive dist/test/**/*.test.js" |
| 14 | }, |
| 15 | "repository": { |
| 16 | "type": "git", |
| 17 | "url": "git+https://github.com/microsoft/vscode-languagedetection.git" |
| 18 | }, |
| 19 | "author": "Tyler Leonhardt", |
| 20 | "license": "MIT", |
| 21 | "bugs": { |
| 22 | "url": "https://github.com/microsoft/vscode-languagedetection/issues" |
| 23 | }, |
| 24 | "homepage": "https://github.com/microsoft/vscode-languagedetection#readme", |
| 25 | "devDependencies": { |
| 26 | "@tensorflow/tfjs": "^3.8.0", |
| 27 | "@types/chai": "^4.2.21", |
| 28 | "@types/mocha": "8.2.3", |
| 29 | "@types/node": "^16.3.1", |
| 30 | "chai": "^4.3.4", |
| 31 | "esbuild": "^0.12.15", |
| 32 | "mocha": "9.0.2", |
| 33 | "node-fetch": "^2.6.1", |
| 34 | "npm-run-all": "^4.1.5", |
| 35 | "rimraf": "3.0.2", |
| 36 | "terser-webpack-plugin": "^5.1.4", |
| 37 | "ts-loader": "^9.2.3", |
| 38 | "typescript": "^4.3.5", |
| 39 | "webpack": "~5.44.0", |
| 40 | "webpack-cli": "^4.7.2" |
| 41 | } |
| 42 | } |
| 43 | |