-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.53 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.53 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
{
"name": "postcss-if-function",
"version": "0.1.9",
"type": "module",
"description": "PostCSS plugin for transforming CSS if() functions to native CSS",
"repository": {
"type": "git",
"url": "git+https://github.com/mfranzke/css-if-polyfill.git"
},
"bugs": {
"url": "https://github.com/mfranzke/css-if-polyfill/issues"
},
"author": "Maximilian Franzke",
"license": "MIT",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.modern.js",
"exports": {
".": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.modern.js"
}
}
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"keywords": [
"postcss",
"postcss-plugin",
"css",
"if",
"media-query",
"supports",
"transform"
],
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"postbuild": "cp dist/index.d.ts dist/index.d.cts",
"prepublishOnly": "pnpm run build",
"pretest:vitest": "pnpm run build",
"test": "pnpm run '/^test:[^:]*$/'",
"test:vitest": "vitest run",
"test:vitest:watch": "vitest"
},
"peerDependencies": {
"postcss": ">=8 <9"
},
"dependencies": {
"css-if-polyfill": "workspace:*"
},
"devDependencies": {
"microbundle": "0.15.1",
"postcss": "8.5.8",
"vitest": "4.0.18",
"xo": "2.0.2"
},
"source": "src/index.js",
"umd:main": "dist/index.umd.js"
}