-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.18 KB
/
package.json
File metadata and controls
86 lines (86 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
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
{
"name": "css-modules-kit-vscode",
"displayName": "CSS Modules Kit",
"description": "The VS Code extension for CSS Modules",
"version": "0.4.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/mizdra/css-modules-kit.git",
"directory": "packages/vscode"
},
"author": "mizdra <pp.mizdra@gmail.com>",
"publisher": "mizdra",
"license": "MIT",
"private": true,
"main": "./dist/index.js",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"vscode:prepublish": "run-s vscode:prepublish:rewrite-root-package-json vscode:prepublish:npm-install",
"vscode:prepublish:rewrite-root-package-json": "jq 'del(.workspaces)' ../../package.json > tmp.json && mv tmp.json ../../package.json",
"vscode:prepublish:npm-install": "npm i --no-package-lock --omit=dev"
},
"engines": {
"vscode": "^1.84.0"
},
"icon": "./image/logo.png",
"keywords": [
"css-modules",
"typescript"
],
"categories": [
"Programming Languages"
],
"activationEvents": [
"onLanguage:css"
],
"contributes": {
"typescriptServerPlugins": [
{
"name": "@css-modules-kit/ts-plugin",
"configNamespace": "typescript",
"enableForWorkspaceTypeScriptVersions": true,
"languages": [
"css"
]
}
],
"jsonValidation": [
{
"fileMatch": "tsconfig.json",
"url": "./schemas/tsconfig.schema.json"
},
{
"fileMatch": "tsconfig.*.json",
"url": "./schemas/tsconfig.schema.json"
},
{
"fileMatch": "tsconfig-*.json",
"url": "./schemas/tsconfig.schema.json"
},
{
"fileMatch": "jsconfig.json",
"url": "./schemas/tsconfig.schema.json"
},
{
"fileMatch": "jsconfig.*.json",
"url": "./schemas/tsconfig.schema.json"
}
],
"menus": {
"commandPalette": [
{
"command": "typescript.openTsServerLog",
"when": "editorLangId == css"
},
{
"command": "typescript.restartTsServer",
"when": "editorLangId == css"
}
]
}
},
"dependencies": {
"@css-modules-kit/ts-plugin": "^0.7.0"
}
}