-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
82 lines (82 loc) · 2.11 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
{
"name": "@twind/react",
"version": "0.0.4",
"description": "Twind react styled components inspired by stitches",
"// mark as private to prevent accidental publish - use 'yarn release'": "",
"private": true,
"keywords": [
"twind",
"react",
"styled",
"styled-components",
"tailwind",
"tw-in-js",
"tailwind-in-js"
],
"bugs": "https://github.com/tw-in-js/twind-react/issues",
"repository": "github:tw-in-js/twind-react",
"license": "MIT",
"contributors": [
"Sascha Tandel (https://github.com/sastan)"
],
"engines": {
"node": ">=10.13"
},
"// The 'module', 'unpkg' and 'types' fields are added by distilt": "",
"main": "index.ts",
"// Each entry is expanded into several bundles (module, script, types, require, node, and default)": "",
"exports": {
".": "./index.ts",
"./package.json": "./package.json"
},
"dependencies": {
"@emotion/is-prop-valid": "^1.1.0",
"react-polymorphic-types": "^1.0.3"
},
"peerDependencies": {
"react": "*",
"twind": ">=0.15.10",
"typescript": "^4.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@twind/typescript-plugin": "^0.2.0",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"c8": "^7.3.5",
"distilt": "^0.9.4",
"esbuild": "^0.8.36",
"esbuild-register": "^2.0.0",
"esm": "^3.2.25",
"prettier": "^2.0.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"twind": ">=0.16.0",
"typescript": "^4.1.3",
"uvu": "^0.5.1",
"watchlist": "^0.2.3"
},
"scripts": {
"build": "distilt",
"format": "prettier --write --ignore-path .gitignore .",
"release": "npx np --contents dist",
"test": "uvu -r esm -r esbuild-register . test.ts",
"test:coverage": "c8 --src index.ts --all -r lcov -r text yarn test",
"test:watch": "watchlist . -- yarn test",
"version": "yarn build"
},
"prettier": {
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"bracketSpacing": true
},
"publishConfig": {
"access": "public"
}
}