-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
100 lines (100 loc) · 2.61 KB
/
package.json
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "typed-css-modules-plugin",
"icon": "logo.png",
"version": "1.0.0",
"license": "MIT",
"displayName": "CSS Module Typed",
"description": "Creates .d.ts files from css-modules .css/.less/.scss/.sass/.styl files",
"author": "xcodebuild <[email protected]>",
"contributors": [
"Ignat Awwit <[email protected]>",
"Daniel Clausmeyer <[email protected]>"
],
"publisher": "awwit",
"engines": {
"vscode": ">=1.40.0",
"node": ">=12.x"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:extension.cssModuleTyped",
"onLanguage:css",
"onLanguage:less",
"onLanguage:scss",
"onLanguage:sass",
"onLanguage:stylus"
],
"repository": {
"url": "https://github.com/awwit/vscode-typed-css-modules"
},
"main": "dist/extension.js",
"contributes": {
"commands": [
{
"command": "extension.cssModuleTyped",
"title": "CSS Module Typed: Generate .d.ts for CSS Module"
}
],
"configuration": {
"type": "object",
"title": "CSS Module Typed",
"properties": {
"typed-css-modules.eslint.enable": {
"description": "Enable automatic formatting of generated files (.d.ts) using eslint",
"type": "boolean",
"default": true
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn compile",
"pub": "vsce publish",
"package": "vsce package",
"precompile": "rimraf ./dist",
"compile": "tsc",
"tc": "tsc --noEmit",
"watch": "tsc -watch",
"pretest": "yarn compile",
"test": "node ./dist/test/runTests.js",
"prepare": "husky install"
},
"dependencies": {
"is-file-equal-buffer": "1.0.4"
},
"devDependencies": {
"@types/eslint": "7.28.1",
"@types/glob": "7.1.4",
"@types/less": "3.0.3",
"@types/mocha": "9.0.0",
"@types/node": "16.11.1",
"@types/sass": "1.16.1",
"@types/stylus": "0.48.36",
"@types/vscode": "^1.40.0",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-standard": "5.0.0",
"husky": "7.0.2",
"less": "4.1.2",
"mocha": "9.1.3",
"prettier": "2.4.1",
"rimraf": "3.0.2",
"sass": "1.43.2",
"stylus": "0.55.0",
"typed-css-modules": "0.7.0",
"typescript": "4.4.4",
"vscode-test": "1.6.1"
},
"peerDependencies": {
"vscode": "^1.40.1"
}
}