-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.65 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
{
"name": "postcss-fluid-sizing-function",
"version": "0.0.2",
"description": "PostCSS plugin to transform fluid() to an expression using clamp(), known as fluid typography.",
"keywords": [
"postcss-plugin"
],
"homepage": "https://github.com/yuheiy/postcss-fluid-sizing-function",
"bugs": {
"url": "https://github.com/yuheiy/postcss-fluid-sizing-function/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/yuheiy/postcss-fluid-sizing-function.git"
},
"license": "MIT",
"author": "Yuhei Yasuda <[email protected]> (https://yuheiy.com/)",
"type": "module",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"files": [
"dist/",
"src/"
],
"scripts": {
"prebuild": "tsc --noEmit",
"build": "unbuild",
"format": "prettier . --write",
"prepare": "npm run build",
"pretest": "npm run build -- --stub",
"test": "node --test",
"test:rewrite-expects": "REWRITE_EXPECTS=true npm run test"
},
"dependencies": {
"@csstools/css-parser-algorithms": "^2.6.0",
"@csstools/css-tokenizer": "^2.2.3"
},
"devDependencies": {
"@csstools/postcss-tape": "^4.1.2",
"@types/node": "^20.11.20",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0"
},
"peerDependencies": {
"postcss": "^8.4"
},
"packageManager": "[email protected]",
"engines": {
"node": "^16 || >=18"
},
"prettier": {
"printWidth": 100,
"singleQuote": true
},
"unbuild": {
"sourcemap": true,
"declaration": "node16"
}
}