-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
43 lines (43 loc) · 1.4 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
{
"name": "typescript-plugin-styled-components",
"version": "3.0.0",
"description": "TypeScript transformer for improving the debugging experience of styled-components",
"main": "dist/index.js",
"homepage": "https://github.com/Igorbek/typescript-plugin-styled-components",
"repository": {
"url": "https://github.com/Igorbek/typescript-plugin-styled-components.git",
"type": "git"
},
"author": "Igor Oleinikov <igor@oleinikov.ru>",
"license": "MIT",
"scripts": {
"build": "tsc",
"build:prod": "tsc --sourceMap false",
"typecheck": "tsc --noEmit",
"test:baselines": "jest --config ./jest.config.json",
"test:watch": "yarn test:baselines -- --watch",
"test": "yarn test:baselines",
"runner": "ts-node ./src/runner.ts"
},
"typings": "dist/index.d.ts",
"peerDependencies": {
"typescript": "~4.8 || 5"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/jest": "^25.2.1",
"@types/jest-specific-snapshot": "^0.5.4",
"@types/node": "^13.1.2",
"@types/react": "^16.7.22",
"jest": "^24.1.0",
"jest-specific-snapshot": "^2.0.0",
"styled-components": "^5.3.11",
"ts-jest": "24.3.0",
"ts-node": "^8.0.2",
"typescript": "~5.1"
},
"files": [
"dist"
],
"packageManager": "yarn@3.6.0"
}