-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.54 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
{
"name": "twined-components",
"version": "0.1.2",
"description": "Extended component of a `styled-components` that prioritizes class names for use in `Tailwind CSS`",
"main": "dist/cjs/index.js",
"scripts": {
"start": "tsc --watch",
"build-esm": "tsc --project tsconfig.esm.json",
"build-cjs": "tsc --project tsconfig.cjs.json",
"build": "npm test && tsc --project tsconfig.esm.json & tsc --project tsconfig.cjs.json",
"test": "jest"
},
"keywords": [
"react",
"css",
"css-in-js",
"styled-components",
"tailwindcss",
"tailwind"
],
"files": [
"dist/**/*"
],
"types": "./dist/types/index.d.ts",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"default": "./dist/cjs/index.js"
},
"author": {
"name": "lowfront",
"email": "fronterior@hotmail.com"
},
"license": "MIT",
"homepage": "https://github.com/lowfront/twined-components",
"bugs": {
"url": "https://github.com/lowfront/twined-components/issues"
},
"devDependencies": {
"@babel/preset-env": "7.16.11",
"@babel/preset-react": "7.16.7",
"@types/jest": "27.4.1",
"@types/node": "17.0.21",
"@types/react": "17.0.40",
"@types/react-test-renderer": "17.0.1",
"@types/styled-components": "5.1.24",
"babel-jest": "27.5.1",
"jest": "27.5.1",
"react-test-renderer": "17.0.2",
"styled-components": "5.3.3",
"ts-jest": "27.1.3",
"typescript": "4.6.2"
},
"jest": {
"transform": {
"^.+\\.(ts|tsx|js|jsx)$": "ts-jest"
}
}
}