-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.1 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
83
84
{
"name": "twind-logical",
"version": "0.1.0",
"description": "A CSS Logical Properties and Values plugin for twind.",
"//": "mark as private to prevent accidental publish - use 'yarn release'",
"private": true,
"keywords": [
"twind",
"extension",
"twind-extension",
"plugin",
"twind-plugin",
"tailwind",
"tw-in-js",
"tailwind-in-js"
],
"homepage": "https://github.com/merodiro/twind-logical#readme",
"bugs": "https://github.com/merodiro/twind-logical/issues",
"repository": "github:merodiro/twind-logical",
"license": "MIT",
"contributors": [
"Amr Gad (https://github.com/merodiro)"
],
"// The 'module', 'unpkg' and 'types' fields are added by distilt": "",
"main": "src/index.ts",
"// Each entry is expanded into several bundles (module, script, types, require, node, and default)": "",
"exports": {
".": "./src/index.ts",
"./compat": "./src/compat.ts",
"./package.json": "./package.json"
},
"peerDependencies": {
"twind": ">=0.14.4",
"typescript": "^4.1.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"sideEffects": false,
"scripts": {
"build": "distilt",
"format": "prettier --write --ignore-path .gitignore .",
"release": "npx np --contents dist",
"start": "snowpack dev",
"version": "yarn build"
},
"prettier": {
"bracketSpacing": true,
"printWidth": 100,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"@prefresh/snowpack": "^3.1.2",
"@size-limit/file": "^4.10.1",
"@types/snowpack-env": "^2.3.3",
"distilt": "^0.10.4",
"esbuild": "^0.9.6",
"execa": "^5.0.0",
"preact": "^10.5.13",
"prettier": "^2.0.5",
"size-limit": "^4.10.1",
"snowpack": "^3.1.2",
"twind": "^0.16.9",
"typescript": "^4.2.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"size-limit": [
{
"path": "./dist/twind-logical.js",
"limit": "3 KB"
},
{
"path": "./dist/compat/compat.js",
"limit": "3 KB"
}
]
}