-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.96 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.96 KB
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
{
"name": "bleedblend",
"version": "2.3.0",
"description": "Zero-config Safari chrome tinting — paints the browser chrome to match your page content at each viewport edge, across iPhone, iPad, and Mac. Handles gradients, sections, and rubber-band overscroll.",
"main": "src/tailwind-plugin.js",
"style": "src/index.css",
"exports": {
".": {
"types": "./src/tailwind-plugin.d.ts",
"default": "./src/tailwind-plugin.js"
},
"./style": "./src/index.css",
"./utils": {
"types": "./src/utils.d.ts",
"import": "./src/utils.mjs",
"default": "./src/utils.js"
},
"./auto": {
"types": "./src/auto.d.ts",
"import": "./src/auto.mjs",
"default": "./src/auto.js"
}
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"test": "node -e \"require('./src/tailwind-plugin.js'); console.log('bleedblend loaded')\"",
"test:pure": "node test/pure.mjs",
"test:units": "node test/units.mjs",
"test:ci": "node test/pure.mjs && node test/units.mjs",
"test:auto": "node test/integration.mjs",
"test:all": "node test/pure.mjs && node test/units.mjs && node test/integration.mjs",
"prepublishOnly": "npm run test:all && node scripts/check-release-readiness.mjs"
},
"keywords": [
"ios",
"ipados",
"macos",
"safari",
"webkit",
"status-bar",
"url-bar",
"chrome",
"safe-area",
"viewport-fit",
"tailwind",
"css",
"zero-config"
],
"author": "CVER Inc. <hi@cver.net> (https://cver.net)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/CVERInc/bleedblend.git"
},
"bugs": {
"url": "https://github.com/CVERInc/bleedblend/issues"
},
"homepage": "https://oss.cver.net/bleedblend/",
"peerDependencies": {
"tailwindcss": ">=3.0.0"
},
"peerDependenciesMeta": {
"tailwindcss": {
"optional": true
}
},
"devDependencies": {
"tailwindcss": "^3.4.17"
}
}