vscode-languagedetection/package.json

49 строки
1.5 KiB
JSON

{
"name": "@vscode/vscode-languagedetection",
"version": "1.0.22",
"description": "An npm package that uses guesslang's ML model to detect source code languages",
"main": "dist/lib/index.js",
"bin": {
"vscode-languagedetection": "cli/index.js"
},
"module": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"scripts": {
"pretest": "npm run clean && tsc --build ./test",
"prepublishOnly": "npm test && npm run compile",
"prepack": "npm run compile",
"clean": "rimraf dist",
"watch": "npm run clean && webpack --watch",
"test": "mocha --recursive dist/test/**/*.test.js",
"compile": "npm run clean && webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-languagedetection.git"
},
"author": "Tyler Leonhardt",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-languagedetection/issues"
},
"homepage": "https://github.com/microsoft/vscode-languagedetection#readme",
"devDependencies": {
"@tensorflow/tfjs-backend-cpu": "^3.21.0",
"@tensorflow/tfjs-converter": "^3.21.0",
"@tensorflow/tfjs-core": "^3.21.0",
"@types/chai": "^4.3.10",
"@types/mocha": "^10.0.4",
"@types/node": "^16.3.1",
"chai": "^4.3.4",
"esbuild": "^0.12.15",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.5.0",
"typescript": "^5.2.2",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
}
}