-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.08 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
{
"name": "css-clamper",
"version": "0.2.0",
"description": "Cozy responsive sizes for CSS-in-JS",
"keywords": [
"css clamp",
"css clamp generator",
"clamp calculator",
"fluid typography",
"min-max-value interpolation",
"responsive size",
"clampify",
"css-in-js"
],
"repository": "artginzburg/css-clamper",
"funding": "https://github.com/artginzburg/css-clamper?sponsor=1",
"license": "MIT",
"author": {
"name": "Art Ginzburg",
"email": "ginzburg.arthur@gmail.com",
"url": "https://ginzburg.art"
},
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"!**/*.test.*"
],
"engines": {
"node": ">=16.6.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"prepack": "npm run build",
"start": "jest --watchAll",
"test": "jest"
},
"devDependencies": {
"@jest/globals": "^29.5.0",
"jest": "^29.5.0",
"jest-config": "^29.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"sideEffects": false
}