forked from microsoft/typescript-styled-plugin
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
53 lines (53 loc) · 1.45 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
{
"name": "@styled/typescript-styled-plugin",
"version": "1.0.1",
"description": "TypeScript language service plugin that adds IntelliSense for styled components",
"keywords": [
"TypeScript",
"styled",
"styled-components",
"styled components",
"css"
],
"main": "lib/index.js",
"author": "Styled Components",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/styled-components/typescript-styled-plugin.git"
},
"bugs": {
"url": "https://github.com/styled-components/typescript-styled-plugin/issues"
},
"dependencies": {
"@vscode/emmet-helper": "^2.9.2",
"typescript-template-language-service-decorator": "^2.3.2",
"vscode-css-languageservice": "^6.2.11",
"vscode-languageserver-textdocument": "^1.0.11",
"vscode-languageserver-types": "^3.17.5"
},
"files": [
"lib"
],
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"chai": "^4.3.7",
"eslint": "^8.55.0",
"eslint-plugin-prettier": "^5.0.1",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"scripts": {
"compile": "tsc -p .",
"watch:compile": "tsc --watch -p .",
"e2e": "mocha e2e/tests --slow 2000 --timeout 10000",
"lint": "eslint src",
"unit": "mocha ./lib/test"
}
}