-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
61 lines (61 loc) · 1.52 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
{
"name": "@twind/wmr",
"version": "1.0.10",
"description": "Twind integration for WMR",
"keywords": [
"twind",
"wmr"
],
"homepage": "https://github.com/tw-in-js/use-twind-with/tree/main/packages/wmr#readme",
"bugs": "https://github.com/tw-in-js/use-twind-with/issues",
"repository": {
"type": "git",
"url": "https://github.com/tw-in-js/use-twind-with",
"directory": "packages/wmr"
},
"license": "MIT",
"author": "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",
"./prerender": "./prerender.ts",
"./package.json": "./package.json"
},
"// These are relative from within the dist/ folder": "",
"sideEffects": false,
"dependencies": {
"@twind/preact": "^1.0.5"
},
"peerDependencies": {
"preact": "^10.5.12",
"preact-iso": ">=1.0.0 <3",
"twind": ">=0.15.9 <2",
"typescript": "^4.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"distilt": "^0.10.1",
"esbuild": "^0.8.31",
"preact": "^10.5.12",
"preact-iso": "^1.0.0",
"twind": "^0.16.0",
"typescript": "^4.1.3"
},
"scripts": {
"build": "distilt",
"test": "tsc",
"version": "yarn build"
},
"publishConfig": {
"access": "public"
}
}