|
1 | 1 | {
|
2 |
| - "name": "vetur-server", |
3 |
| - "description": "vetur language server", |
4 |
| - "version": "0.1.0", |
| 2 | + "name": "vue-language-server", |
| 3 | + "description": "vue-language-server", |
| 4 | + "version": "0.0.2", |
5 | 5 | "author": "Pine Wu <[email protected]>",
|
6 | 6 | "license": "MIT",
|
| 7 | + "main": "dist/vueServerMain.js", |
| 8 | + "bin": { |
| 9 | + "vls": "./bin/vls" |
| 10 | + }, |
7 | 11 | "engines": {
|
8 | 12 | "node": "*"
|
9 | 13 | },
|
| 14 | + "files": [ |
| 15 | + "dist", |
| 16 | + "bin" |
| 17 | + ], |
10 | 18 | "dependencies": {
|
11 |
| - "de-indent": "^1.0.2", |
12 |
| - "he": "^1.1.1", |
13 | 19 | "js-beautify": "^1.6.14",
|
14 | 20 | "lodash": "^4.17.4",
|
15 |
| - "typescript": "^2.2.2", |
| 21 | + "stylus": "^0.54.5", |
| 22 | + "typescript": "^2.3.4", |
16 | 23 | "vscode-css-languageservice": "^2.0.0",
|
17 | 24 | "vscode-languageserver": "^3.2.1",
|
18 |
| - "vscode-uri": "^1.0.0" |
| 25 | + "vscode-uri": "^1.0.0", |
| 26 | + "vue-template-compiler": "^2.3.3" |
19 | 27 | },
|
20 | 28 | "devDependencies": {
|
21 |
| - "@types/lodash": "^4.14.62", |
22 |
| - "@types/node": "^6.0.54" |
| 29 | + "@types/js-beautify": "0.0.30", |
| 30 | + "@types/lodash": "^4.14.65", |
| 31 | + "@types/mocha": "^2.2.41", |
| 32 | + "@types/node": "^6.0.77", |
| 33 | + "mocha": "^3.4.2", |
| 34 | + "source-map-support": "^0.4.15" |
23 | 35 | },
|
24 | 36 | "scripts": {
|
25 |
| - "compile": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc -p .", |
26 |
| - "watch": "installServerIntoExtension ../client ./package.json ./tsconfig.json && tsc --watch -p ." |
| 37 | + "compile": "tsc", |
| 38 | + "watch": "tsc --watch", |
| 39 | + "test": "mocha", |
| 40 | + "preversion": "npm run compile && npm test" |
27 | 41 | }
|
28 | 42 | }
|
0 commit comments