-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.03 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
{
"name": "@twind/typography",
"version": "0.0.2",
"description": "A Tailwind JS plugin for automatically styling plain HTML content with beautiful typographic defaults.",
"//": "mark as private to prevent accidental publish - use 'yarn release'",
"private": true,
"keywords": [
"tailwind",
"tw-in-js",
"tailwind-in-js"
],
"homepage": "https://github.com/tw-in-js/typography#readme",
"bugs": "https://github.com/tw-in-js/typography/issues",
"repository": "github:tw-in-js/typography",
"license": "MIT",
"contributors": [
"Luke Jackson (lukejacksonn.github.io)",
"Sascha Tandel (https://github.com/sastan)"
],
"// 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",
"./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": "^2.2.0",
"@size-limit/file": "^4.9.1",
"@twind/typescript-plugin": "^0.1.0",
"@types/snowpack-env": "^2.3.2",
"distilt": "^0.9.4",
"esbuild": "^0.8.23",
"execa": "^5.0.0",
"preact": "^10.5.7",
"prettier": "^2.0.5",
"size-limit": "^4.9.1",
"snowpack": "^2.18.2",
"twind": "^0.16.0",
"typescript": "^4.1.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.com/"
},
"size-limit": [
{
"path": "./dist/typography.js",
"limit": "3 KB"
}
]
}