зеркало из https://github.com/microsoft/lsif-node.git
43 строки
1.4 KiB
JSON
43 строки
1.4 KiB
JSON
{
|
|
"name": "lsif-tsc",
|
|
"description": "Tool to create an LSIF dump for TypeScript projects.",
|
|
"version": "0.6.0-next.12",
|
|
"author": "Microsoft Corporation",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/Microsoft/lsif-node.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Microsoft/lsif-node/issues"
|
|
},
|
|
"main": "lib/main.js",
|
|
"typings": "lib/main.d.ts",
|
|
"bin": {
|
|
"lsif-tsc": "./bin/lsif-tsc"
|
|
},
|
|
"dependencies": {
|
|
"latest-version": "5.1.0",
|
|
"lsif-protocol": "0.6.0-next.5",
|
|
"typescript": "https://github.com/dbaeumer/TypeScript/releases/download/4.3.0-lsif.1/typescript-4.3.0-lsif.1.tgz",
|
|
"uuid": "^8.3.2",
|
|
"vscode-uri": "^3.0.2",
|
|
"yargs": "16.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/uuid": "^8.3.0"
|
|
},
|
|
"scripts": {
|
|
"compile": "node ../build/bin/tsc -b ./tsconfig.json",
|
|
"compile:publish": "node ../build/bin/tsc -p ./tsconfig.publish.json",
|
|
"watch": "node ../build/bin/tsc -b ./tsconfig.watch.json -w",
|
|
"clean": "node ../node_modules/rimraf/bin.js lib",
|
|
"clean:all": "node ../build/bin/tsc -b ./tsconfig.json --clean",
|
|
"lint": "node ../node_modules/eslint/bin/eslint.js ./src/*.ts",
|
|
"test": "cd ../tsc-tests && npm run test",
|
|
"prepublishOnly": "git clean -xfd . && npm install && npm run clean && npm run compile:publish && npm run lint && npm run test",
|
|
"postpublish": "node ../build/bin/post-publish.js",
|
|
"postinstall": ""
|
|
}
|
|
}
|