package.json 23.2 KB
Newer Older
P
Pine Wu 已提交
1
{
2
  "name": "css-language-features",
3 4
  "displayName": "%displayName%",
  "description": "%description%",
P
Pine Wu 已提交
5 6
  "version": "1.0.0",
  "publisher": "vscode",
7
  "license": "MIT",
P
Pine Wu 已提交
8
  "engines": {
M
Matt Bierner 已提交
9
    "vscode": "^1.29.0"
P
Pine Wu 已提交
10 11 12 13 14 15 16 17 18
  },
  "icon": "icons/css.png",
  "activationEvents": [
    "onLanguage:css",
    "onLanguage:less",
    "onLanguage:scss",
    "onCommand:_css.applyCodeAction"
  ],
  "main": "./client/out/cssMain",
19
  "enableProposedApi": true,
P
Pine Wu 已提交
20
  "scripts": {
21 22
    "compile": "gulp compile-extension:css-language-features-client compile-extension:css-language-features-server",
    "watch": "gulp watch-extension:css-language-features-client watch-extension:css-language-features-server",
23
    "test": "mocha",
P
Pine Wu 已提交
24
    "postinstall": "cd server && yarn install",
M
Martin Aeschlimann 已提交
25
    "install-client-next": "yarn add vscode-languageclient@next"
P
Pine Wu 已提交
26
  },
M
Martin Aeschlimann 已提交
27 28 29
  "categories": [
    "Programming Languages"
  ],
P
Pine Wu 已提交
30 31 32 33 34 35 36
  "contributes": {
    "configuration": [
      {
        "order": 22,
        "id": "css",
        "title": "%css.title%",
        "properties": {
P
Pine Wu 已提交
37 38
          "css.customData": {
            "type": "array",
P
Pine Wu 已提交
39
            "markdownDescription": "%css.customData.desc%",
P
Pine Wu 已提交
40 41 42 43 44 45
            "default": [],
            "items": {
              "type": "string"
            },
            "scope": "resource"
          },
46 47 48 49 50 51
          "css.completion.triggerPropertyValueCompletion": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%css.completion.triggerPropertyValueCompletion.desc%"
          },
P
Pine Wu 已提交
52 53 54 55 56 57
          "css.completion.completePropertyWithSemicolon": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%css.completion.completePropertyWithSemicolon.desc%"
          },
P
Pine Wu 已提交
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
          "css.validate": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%css.validate.desc%"
          },
          "css.lint.compatibleVendorPrefixes": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%css.lint.compatibleVendorPrefixes.desc%"
          },
          "css.lint.vendorPrefix": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%css.lint.vendorPrefix.desc%"
          },
          "css.lint.duplicateProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%css.lint.duplicateProperties.desc%"
          },
          "css.lint.emptyRules": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%css.lint.emptyRules.desc%"
          },
          "css.lint.importStatement": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%css.lint.importStatement.desc%"
          },
          "css.lint.boxModel": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
128
            "markdownDescription": "%css.lint.boxModel.desc%"
P
Pine Wu 已提交
129 130 131 132 133 134 135 136 137 138
          },
          "css.lint.universalSelector": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
139
            "markdownDescription": "%css.lint.universalSelector.desc%"
P
Pine Wu 已提交
140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160
          },
          "css.lint.zeroUnits": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%css.lint.zeroUnits.desc%"
          },
          "css.lint.fontFaceProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
161
            "markdownDescription": "%css.lint.fontFaceProperties.desc%"
P
Pine Wu 已提交
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195
          },
          "css.lint.hexColorLength": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "error",
            "description": "%css.lint.hexColorLength.desc%"
          },
          "css.lint.argumentsInColorFunction": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "error",
            "description": "%css.lint.argumentsInColorFunction.desc%"
          },
          "css.lint.unknownProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%css.lint.unknownProperties.desc%"
          },
M
Martin Aeschlimann 已提交
196
          "css.lint.validProperties": {
197 198
            "type": "array",
            "uniqueItems": true,
199 200 201
            "items": {
              "type": "string"
            },
M
Martin Aeschlimann 已提交
202
            "scope": "resource",
203
            "default": [],
M
Martin Aeschlimann 已提交
204 205
            "description": "%css.lint.validProperties.desc%"
          },
P
Pine Wu 已提交
206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236
          "css.lint.ieHack": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%css.lint.ieHack.desc%"
          },
          "css.lint.unknownVendorSpecificProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%css.lint.unknownVendorSpecificProperties.desc%"
          },
          "css.lint.propertyIgnoredDueToDisplay": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
237
            "markdownDescription": "%css.lint.propertyIgnoredDueToDisplay.desc%"
P
Pine Wu 已提交
238 239 240 241 242 243 244 245 246 247
          },
          "css.lint.important": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
248
            "markdownDescription": "%css.lint.important.desc%"
P
Pine Wu 已提交
249 250 251 252 253 254 255 256 257 258
          },
          "css.lint.float": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
259
            "markdownDescription": "%css.lint.float.desc%"
P
Pine Wu 已提交
260 261 262 263 264 265 266 267 268 269 270 271
          },
          "css.lint.idSelector": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%css.lint.idSelector.desc%"
          },
P
Pine Wu 已提交
272 273 274 275 276 277 278 279 280 281 282
          "css.lint.unknownAtRules": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%css.lint.unknownAtRules.desc%"
          },
P
Pine Wu 已提交
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
          "css.trace.server": {
            "type": "string",
            "scope": "window",
            "enum": [
              "off",
              "messages",
              "verbose"
            ],
            "default": "off",
            "description": "%css.trace.server.desc%"
          }
        }
      },
      {
        "id": "scss",
        "order": 24,
        "title": "%scss.title%",
        "properties": {
P
Pine Wu 已提交
301 302 303 304 305 306 307 308 309 310 311 312
          "scss.completion.triggerPropertyValueCompletion": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%scss.completion.triggerPropertyValueCompletion.desc%"
          },
          "scss.completion.completePropertyWithSemicolon": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%scss.completion.completePropertyWithSemicolon.desc%"
          },
P
Pine Wu 已提交
313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382
          "scss.validate": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%scss.validate.desc%"
          },
          "scss.lint.compatibleVendorPrefixes": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%scss.lint.compatibleVendorPrefixes.desc%"
          },
          "scss.lint.vendorPrefix": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%scss.lint.vendorPrefix.desc%"
          },
          "scss.lint.duplicateProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%scss.lint.duplicateProperties.desc%"
          },
          "scss.lint.emptyRules": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%scss.lint.emptyRules.desc%"
          },
          "scss.lint.importStatement": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%scss.lint.importStatement.desc%"
          },
          "scss.lint.boxModel": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
383
            "markdownDescription": "%scss.lint.boxModel.desc%"
P
Pine Wu 已提交
384 385 386 387 388 389 390 391 392 393
          },
          "scss.lint.universalSelector": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
394
            "markdownDescription": "%scss.lint.universalSelector.desc%"
P
Pine Wu 已提交
395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
          },
          "scss.lint.zeroUnits": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%scss.lint.zeroUnits.desc%"
          },
          "scss.lint.fontFaceProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
416
            "markdownDescription": "%scss.lint.fontFaceProperties.desc%"
P
Pine Wu 已提交
417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450
          },
          "scss.lint.hexColorLength": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "error",
            "description": "%scss.lint.hexColorLength.desc%"
          },
          "scss.lint.argumentsInColorFunction": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "error",
            "description": "%scss.lint.argumentsInColorFunction.desc%"
          },
          "scss.lint.unknownProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%scss.lint.unknownProperties.desc%"
          },
M
Martin Aeschlimann 已提交
451
          "scss.lint.validProperties": {
452 453
            "type": "array",
            "uniqueItems": true,
454 455 456
            "items": {
              "type": "string"
            },
M
Martin Aeschlimann 已提交
457
            "scope": "resource",
458
            "default": [],
M
Martin Aeschlimann 已提交
459 460
            "description": "%scss.lint.validProperties.desc%"
          },
P
Pine Wu 已提交
461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491
          "scss.lint.ieHack": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%scss.lint.ieHack.desc%"
          },
          "scss.lint.unknownVendorSpecificProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%scss.lint.unknownVendorSpecificProperties.desc%"
          },
          "scss.lint.propertyIgnoredDueToDisplay": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
492
            "markdownDescription": "%scss.lint.propertyIgnoredDueToDisplay.desc%"
P
Pine Wu 已提交
493 494 495 496 497 498 499 500 501 502
          },
          "scss.lint.important": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
503
            "markdownDescription": "%scss.lint.important.desc%"
P
Pine Wu 已提交
504 505 506 507 508 509 510 511 512 513
          },
          "scss.lint.float": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
514
            "markdownDescription": "%scss.lint.float.desc%"
P
Pine Wu 已提交
515 516 517 518 519 520 521 522 523 524 525
          },
          "scss.lint.idSelector": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%scss.lint.idSelector.desc%"
P
Pine Wu 已提交
526 527 528 529 530 531 532 533 534 535 536
          },
          "scss.lint.unknownAtRules": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%scss.lint.unknownAtRules.desc%"
P
Pine Wu 已提交
537 538 539 540 541 542 543 544 545
          }
        }
      },
      {
        "id": "less",
        "order": 23,
        "type": "object",
        "title": "%less.title%",
        "properties": {
P
Pine Wu 已提交
546 547 548 549 550 551 552 553 554 555 556 557
          "less.completion.triggerPropertyValueCompletion": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%less.completion.triggerPropertyValueCompletion.desc%"
          },
          "less.completion.completePropertyWithSemicolon": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%less.completion.completePropertyWithSemicolon.desc%"
          },
P
Pine Wu 已提交
558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627
          "less.validate": {
            "type": "boolean",
            "scope": "resource",
            "default": true,
            "description": "%less.validate.desc%"
          },
          "less.lint.compatibleVendorPrefixes": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%less.lint.compatibleVendorPrefixes.desc%"
          },
          "less.lint.vendorPrefix": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%less.lint.vendorPrefix.desc%"
          },
          "less.lint.duplicateProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%less.lint.duplicateProperties.desc%"
          },
          "less.lint.emptyRules": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%less.lint.emptyRules.desc%"
          },
          "less.lint.importStatement": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%less.lint.importStatement.desc%"
          },
          "less.lint.boxModel": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
628
            "markdownDescription": "%less.lint.boxModel.desc%"
P
Pine Wu 已提交
629 630 631 632 633 634 635 636 637 638
          },
          "less.lint.universalSelector": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
639
            "markdownDescription": "%less.lint.universalSelector.desc%"
P
Pine Wu 已提交
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660
          },
          "less.lint.zeroUnits": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%less.lint.zeroUnits.desc%"
          },
          "less.lint.fontFaceProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
661
            "markdownDescription": "%less.lint.fontFaceProperties.desc%"
P
Pine Wu 已提交
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
          },
          "less.lint.hexColorLength": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "error",
            "description": "%less.lint.hexColorLength.desc%"
          },
          "less.lint.argumentsInColorFunction": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "error",
            "description": "%less.lint.argumentsInColorFunction.desc%"
          },
          "less.lint.unknownProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%less.lint.unknownProperties.desc%"
          },
M
Martin Aeschlimann 已提交
696
          "less.lint.validProperties": {
697 698
            "type": "array",
            "uniqueItems": true,
699 700 701
            "items": {
              "type": "string"
            },
M
Martin Aeschlimann 已提交
702
            "scope": "resource",
703
            "default": [],
M
Martin Aeschlimann 已提交
704 705
            "description": "%less.lint.validProperties.desc%"
          },
P
Pine Wu 已提交
706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736
          "less.lint.ieHack": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%less.lint.ieHack.desc%"
          },
          "less.lint.unknownVendorSpecificProperties": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%less.lint.unknownVendorSpecificProperties.desc%"
          },
          "less.lint.propertyIgnoredDueToDisplay": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
737
            "markdownDescription": "%less.lint.propertyIgnoredDueToDisplay.desc%"
P
Pine Wu 已提交
738 739 740 741 742 743 744 745 746 747
          },
          "less.lint.important": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
748
            "markdownDescription": "%less.lint.important.desc%"
P
Pine Wu 已提交
749 750 751 752 753 754 755 756 757 758
          },
          "less.lint.float": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
759
            "markdownDescription": "%less.lint.float.desc%"
P
Pine Wu 已提交
760 761 762 763 764 765 766 767 768 769 770
          },
          "less.lint.idSelector": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "ignore",
            "description": "%less.lint.idSelector.desc%"
P
Pine Wu 已提交
771 772 773 774 775 776 777 778 779 780 781
          },
          "less.lint.unknownAtRules": {
            "type": "string",
            "scope": "resource",
            "enum": [
              "ignore",
              "warning",
              "error"
            ],
            "default": "warning",
            "description": "%less.lint.unknownAtRules.desc%"
P
Pine Wu 已提交
782 783 784
          }
        }
      }
P
Pine Wu 已提交
785 786 787 788 789
    ],
    "jsonValidation": [
      {
        "fileMatch": "*.css-data.json",
        "url": "https://raw.githubusercontent.com/Microsoft/vscode-css-languageservice/master/docs/customData.schema.json"
P
Pine Wu 已提交
790 791 792 793
      },
      {
        "fileMatch": "package.json",
        "url": "./schemas/package.schema.json"
P
Pine Wu 已提交
794
      }
P
Pine Wu 已提交
795 796 797
    ]
  },
  "dependencies": {
798
    "vscode-languageclient": "^6.0.0-next.3",
799
    "vscode-nls": "^4.1.1"
P
Pine Wu 已提交
800 801
  },
  "devDependencies": {
802
    "@types/node": "^12.11.7",
M
Martin Aeschlimann 已提交
803
    "mocha": "^6.1.4"
P
Pine Wu 已提交
804
  }
805
}