-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
111 lines (111 loc) · 2.84 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
101
102
103
104
105
106
107
108
109
110
111
{
"name": "styco",
"displayName": "styco - styled components converter",
"description": "Transform tags with inline style-props to styled components",
"version": "0.2.6",
"engines": {
"vscode": "^1.67.0"
},
"license": "MIT",
"repository": {
"url": "https://github.com/Agreon/styco"
},
"publisher": "DanielHuth",
"categories": [
"Formatters"
],
"icon": "styco_logo.png",
"keywords": [
"css",
"formatter",
"converter",
"styled components",
"styled-components",
"linaria",
"emotion",
"css-in-js",
"javascript",
"typescript",
"extractor"
],
"activationEvents": [
"onLanguage:typescriptreact",
"onLanguage:javascriptreact",
"onCommand:extension.styco"
],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "StyCo",
"properties": {
"styco.insertImportStatement": {
"type": "boolean",
"default": true,
"description": "Insert import statement of the detected library if not existent"
},
"styco.orderStyleByName": {
"type": "boolean",
"default": false,
"description": "Order styles by name alphabetically"
},
"styco.saveAfterExecute": {
"type": "boolean",
"default": true,
"description": "Save the file after command execution"
},
"styco.disableCodeAction": {
"type": "boolean",
"default": false,
"description": "Show a CodeAction if a `style`-Attribute is found"
},
"styco.objectSyntax": {
"type": "boolean",
"default": false,
"description": "Output the styled component in object syntax"
}
}
},
"commands": [
{
"command": "extension.styco",
"title": "StyCo"
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"dev": "webpack --mode development --watch",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.17.10",
"@babel/preset-env": "^7.17.10",
"@babel/preset-typescript": "^7.16.7",
"@babel/types": "^7.17.10",
"@types/babel__generator": "^7.6.4",
"@types/babel__traverse": "^7.17.1",
"@types/glob": "^7.2.0",
"@types/jest": "^27.5.1",
"@types/node": "17.0.32",
"@types/vscode": "1.67.0",
"babel-jest": "^28.1.0",
"glob": "^8.0.1",
"jest": "^28.1.0",
"ts-loader": "^9.3.0",
"tslint": "6.1.3",
"typescript": "^4.6.4",
"vscode-test": "^1.6.1",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/generator": "^7.17.10",
"@babel/parser": "^7.17.10",
"@babel/traverse": "^7.17.10"
},
"resolutions": {
"@babel/types": "^7.17.10"
}
}