-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 3.13 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 3.13 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
75
76
77
78
79
80
81
82
83
{
"name": "css-if-polyfill-monorepo",
"version": "",
"type": "module",
"description": "A JavaScript polyfill and PostCSS plugin for CSS if() functionality with style(), media(), and supports() functions",
"repository": {
"type": "git",
"url": "git+https://github.com/mfranzke/css-if-polyfill.git"
},
"homepage": "https://mfranzke.github.io/css-if-polyfill/",
"bugs": {
"url": "https://github.com/mfranzke/css-if-polyfill/issues"
},
"author": "Maximilian Franzke",
"license": "MIT",
"private": true,
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"engines": {
"node": ">= 22"
},
"keywords": [
"css",
"polyfill",
"conditional",
"if",
"media-query",
"supports",
"style"
],
"scripts": {
"build": "pnpm --recursive run build",
"build:docs": "node scripts/build-docs.js",
"changeset": "changeset",
"changeset:publish": "pnpm run build && pnpm exec changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only && prettier '{CHANGELOG.md,packages/*/CHANGELOG.md}' --write",
"codestyle": "prettier . --write",
"dev": "pnpm --recursive run dev",
"lint": "pnpm --parallel run '/^lint:[^:]*$/'",
"lint:markdownlint": "markdownlint --config .config/.markdown-lint.yml **/*.md",
"lint:packages": "publint packages/css-if-polyfill && publint packages/postcss-if-function && publint packages/lightningcss-plugin-if-function && publint packages/stylelint-config-if-function",
"lint:stylelint": "stylelint test/fixtures/*.input.css --config .config/.stylelintrc.json",
"lint:stylelint:14": "npx stylelint@14 test/fixtures/*.input.css --config .config/.stylelintrc.older.json",
"lint:stylelint:15": "npx stylelint@15 test/fixtures/*.input.css --config .config/.stylelintrc.older.json",
"lint:stylelint:16": "npx stylelint@16 test/fixtures/*.input.css --config .config/.stylelintrc.json",
"lint:xo": "xo",
"prelint:packages": "pnpm run build",
"prepare": "husky",
"preserve": "pnpm --filter=css-if-polyfill run build",
"serve": "http-server -p 3000 -o examples/basic-examples.html",
"test": "pnpm --recursive run test"
},
"devDependencies": {
"@babel/core": "7.29.0",
"@babel/preset-env": "7.29.0",
"@changesets/changelog-github": "0.5.2",
"@changesets/cli": "2.29.8",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@vitest/coverage-v8": "4.0.18",
"http-server": "14.1.1",
"husky": "9.1.7",
"jsdom": "27.2.0",
"lint-staged": "16.3.1",
"markdownlint-cli": "0.48.0",
"microbundle": "0.15.1",
"playwright": "1.55.1",
"prettier": "3.8.1",
"prettier-plugin-organize-imports": "4.3.0",
"prettier-plugin-pkg": "0.21.2",
"publint": "0.3.18",
"stylelint": "^17.4.0",
"stylelint-config-standard": "^40.0.0",
"vite": "8.0.0",
"vitest": "4.0.18",
"xo": "1.2.3"
},
"pnpm": {
"overrides": {
"qs@>=6.7.0 <=6.14.1": ">=6.14.2",
"markdown-it@>=13.0.0 <14.1.1": ">=14.1.1"
}
}
}