microsoft/vscode-languagedetection

Public

mirrored fromhttps://github.com/microsoft/vscode-languagedetectionAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
34a116c8bee3ff5b7d6bb9355e04131f6a118b2a

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

package.json

46lines · modecode

1{
2 "name": "@vscode/vscode-languagedetection",
3 "version": "1.0.14",
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 "pretest": "npm run clean && tsc --build ./test",
10 "prepublish": "npm run build",
11 "prepack": "npm run build",
12 "clean": "rimraf dist",
13 "watch": "npm run clean && webpack --watch",
14 "test": "mocha --recursive dist/test/**/*.test.js",
15 "build": "npm run clean && webpack --mode production"
16 },
17 "repository": {
18 "type": "git",
19 "url": "git+https://github.com/microsoft/vscode-languagedetection.git"
20 },
21 "author": "Tyler Leonhardt",
22 "license": "MIT",
23 "bugs": {
24 "url": "https://github.com/microsoft/vscode-languagedetection/issues"
25 },
26 "homepage": "https://github.com/microsoft/vscode-languagedetection#readme",
27 "devDependencies": {
28 "@tensorflow/tfjs-backend-cpu": "^3.8.0",
29 "@tensorflow/tfjs-converter": "^3.8.0",
30 "@tensorflow/tfjs-core": "^3.8.0",
31 "@types/chai": "^4.2.21",
32 "@types/mocha": "8.2.3",
33 "@types/node": "^16.3.1",
34 "chai": "^4.3.4",
35 "esbuild": "^0.12.15",
36 "mocha": "9.0.2",
37 "node-fetch": "^2.6.1",
38 "npm-run-all": "^4.1.5",
39 "rimraf": "3.0.2",
40 "terser-webpack-plugin": "^5.1.4",
41 "ts-loader": "^9.2.3",
42 "typescript": "^4.3.5",
43 "webpack": "~5.44.0",
44 "webpack-cli": "^4.7.2"
45 }
46}
47