-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.75 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
{
"name": "styled-container-queries",
"version": "1.0.0",
"description": "Simple lib to use container queries with styled-components",
"author": "Victor Bicudo <[email protected]> (https://github.com/martinsbicudo)",
"license": "MIT",
"homepage": "https://github.com/martinsbicudo/styled-container-queries#readme",
"source": "src/index.ts",
"main": "dist/main.js",
"types": "dist/types.d.ts",
"files": [
"dist"
],
"targets": {
"main": {
"optimize": true
}
},
"engines": {
"node": ">=18.14.1"
},
"scripts": {
"dev": "parcel watch",
"build": "parcel build",
"prepublishOnly": "npm run build",
"size": "size-limit dist/main.js",
"test": "jest src",
"posttest": "jest-it-up"
},
"size-limit": [
{
"path": "dist/bundle.js",
"limit": "5 kB"
}
],
"repository": {
"type": "git",
"url": "https://github.com/martinsbicudo/styled-container-queries.git"
},
"bugs": {
"url": "https://github.com/martinsbicudo/styled-container-queries/issues"
},
"keywords": [
"container",
"containers",
"query",
"container-query",
"container-queries",
"styled",
"react",
"javascript",
"css-in-js",
"css-in-react",
"typescript",
"styled-container-query",
"styled container query",
"styled components",
"styled-components"
],
"devDependencies": {
"@parcel/packager-ts": "^2.9.3",
"@parcel/reporter-bundle-analyzer": "^2.9.3",
"@parcel/transformer-typescript-types": "^2.9.3",
"@size-limit/preset-small-lib": "^9.0.0",
"@types/jest": "^29.5.5",
"jest": "^29.7.0",
"jest-it-up": "^3.0.0",
"parcel": "^2.9.3",
"size-limit": "^9.0.0",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}