|
1 | 1 | {
|
2 |
| - "name": "@csstools/csstools-cli", |
3 |
| - "description": "Transform CSS with any plugin from csstools/postcss-plugins", |
4 |
| - "version": "1.2.0", |
5 |
| - "author": "Jonathan Neal <jonathantneal@hotmail.com>", |
6 |
| - "license": "CC0-1.0", |
7 |
| - "engines": { |
8 |
| - "node": "^12 || ^14 || >=16" |
9 |
| - }, |
10 |
| - "bin": { |
11 |
| - "csstools-cli": "dist/cli.cjs" |
12 |
| - }, |
13 |
| - "types": "dist/cli.d.ts", |
14 |
| - "files": [ |
15 |
| - "CHANGELOG.md", |
16 |
| - "LICENSE.md", |
17 |
| - "README.md", |
18 |
| - "dist" |
19 |
| - ], |
20 |
| - "dependencies": { |
21 |
| - "@csstools/postcss-font-format-keywords": "^1.0.0", |
22 |
| - "@csstools/postcss-hwb-function": "^1.0.0", |
23 |
| - "@csstools/postcss-is-pseudo-class": "^2.0.0", |
24 |
| - "@csstools/postcss-normalize-display-values": "^1.0.0", |
25 |
| - "css-blank-pseudo": "^3.0.3", |
26 |
| - "css-has-pseudo": "^3.0.4", |
27 |
| - "css-prefers-color-scheme": "^6.0.3", |
28 |
| - "postcss-color-functional-notation": "^4.2.2", |
29 |
| - "postcss-color-hex-alpha": "^8.0.3", |
30 |
| - "postcss-color-rebeccapurple": "^7.0.2", |
31 |
| - "postcss-custom-properties": "^12.1.4", |
32 |
| - "postcss-dir-pseudo-class": "^6.0.4", |
33 |
| - "postcss-double-position-gradients": "^3.1.0", |
34 |
| - "postcss-env-function": "^4.0.5", |
35 |
| - "postcss-focus-visible": "^6.0.4", |
36 |
| - "postcss-focus-within": "^5.0.4", |
37 |
| - "postcss-gap-properties": "^3.0.3", |
38 |
| - "postcss-image-set-function": "^4.0.6", |
39 |
| - "postcss-lab-function": "^4.1.1", |
40 |
| - "postcss-logical": "^5.0.4", |
41 |
| - "postcss-nesting": "^10.1.2", |
42 |
| - "postcss-overflow-shorthand": "^3.0.3", |
43 |
| - "postcss-place": "^7.0.4", |
44 |
| - "postcss-preset-env": "^7.4.0", |
45 |
| - "postcss-pseudo-class-any-link": "^7.1.1" |
46 |
| - }, |
47 |
| - "devDependencies": { |
48 |
| - "postcss": "^8.4.6" |
49 |
| - }, |
50 |
| - "scripts": { |
51 |
| - "build": "rollup -c ../../rollup/default.js", |
52 |
| - "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", |
53 |
| - "csstools-cli": "csstools-cli", |
54 |
| - "lint": "npm run lint:eslint && npm run lint:package-json", |
55 |
| - "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", |
56 |
| - "lint:package-json": "node ../../.github/bin/format-package-json.mjs", |
57 |
| - "prepublishOnly": "npm run clean && npm run build && npm run test", |
58 |
| - "stryker": "stryker run --logLevel error", |
59 |
| - "test": "exit 0", |
60 |
| - "test:cli": "bash ./test/cli/test.sh" |
61 |
| - }, |
62 |
| - "homepage": "https://github.com/csstools/postcss-plugins/tree/main/cli/csstools-cli#readme", |
63 |
| - "repository": { |
64 |
| - "type": "git", |
65 |
| - "url": "https://github.com/csstools/postcss-plugins.git", |
66 |
| - "directory": "cli/csstools-cli" |
67 |
| - }, |
68 |
| - "volta": { |
69 |
| - "extends": "../../package.json" |
70 |
| - } |
| 2 | + "name": "@csstools/csstools-cli", |
| 3 | + "description": "Transform CSS with any plugin from csstools/postcss-plugins", |
| 4 | + "version": "1.2.0", |
| 5 | + "author": "Jonathan Neal <jonathantneal@hotmail.com>", |
| 6 | + "license": "CC0-1.0", |
| 7 | + "engines": { |
| 8 | + "node": "^12 || ^14 || >=16" |
| 9 | + }, |
| 10 | + "bin": { |
| 11 | + "csstools-cli": "dist/cli.cjs" |
| 12 | + }, |
| 13 | + "types": "dist/cli.d.ts", |
| 14 | + "files": [ |
| 15 | + "CHANGELOG.md", |
| 16 | + "LICENSE.md", |
| 17 | + "README.md", |
| 18 | + "dist" |
| 19 | + ], |
| 20 | + "dependencies": { |
| 21 | + "@csstools/postcss-font-format-keywords": "^1.0.0", |
| 22 | + "@csstools/postcss-hwb-function": "^1.0.0", |
| 23 | + "@csstools/postcss-is-pseudo-class": "^2.0.0", |
| 24 | + "@csstools/postcss-normalize-display-values": "^1.0.0", |
| 25 | + "css-blank-pseudo": "^3.0.3", |
| 26 | + "css-has-pseudo": "^3.0.4", |
| 27 | + "css-prefers-color-scheme": "^6.0.3", |
| 28 | + "postcss-color-functional-notation": "^4.2.2", |
| 29 | + "postcss-color-hex-alpha": "^8.0.3", |
| 30 | + "postcss-color-rebeccapurple": "^7.0.2", |
| 31 | + "postcss-custom-properties": "^12.1.4", |
| 32 | + "postcss-dir-pseudo-class": "^6.0.4", |
| 33 | + "postcss-double-position-gradients": "^3.1.0", |
| 34 | + "postcss-env-function": "^4.0.5", |
| 35 | + "postcss-focus-visible": "^6.0.4", |
| 36 | + "postcss-focus-within": "^5.0.4", |
| 37 | + "postcss-gap-properties": "^3.0.3", |
| 38 | + "postcss-image-set-function": "^4.0.6", |
| 39 | + "postcss-lab-function": "^4.1.1", |
| 40 | + "postcss-logical": "^5.0.4", |
| 41 | + "postcss-nesting": "^10.1.2", |
| 42 | + "postcss-overflow-shorthand": "^3.0.3", |
| 43 | + "postcss-place": "^7.0.4", |
| 44 | + "postcss-preset-env": "^7.4.0", |
| 45 | + "postcss-pseudo-class-any-link": "^7.1.1" |
| 46 | + }, |
| 47 | + "devDependencies": { |
| 48 | + "postcss": "^8.4.6" |
| 49 | + }, |
| 50 | + "scripts": { |
| 51 | + "build": "rollup -c ../../rollup/default.js", |
| 52 | + "clean": "node -e \"fs.rmSync('./dist', { recursive: true, force: true });\"", |
| 53 | + "csstools-cli": "csstools-cli", |
| 54 | + "lint": "npm run lint:eslint && npm run lint:package-json", |
| 55 | + "lint:eslint": "eslint ./src --ext .js --ext .ts --ext .mjs --no-error-on-unmatched-pattern", |
| 56 | + "lint:package-json": "node ../../.github/bin/format-package-json.mjs", |
| 57 | + "prepublishOnly": "npm run clean && npm run build && npm run test", |
| 58 | + "stryker": "stryker run --logLevel error", |
| 59 | + "test": "exit 0", |
| 60 | + "test:cli": "bash ./test/cli/test.sh" |
| 61 | + }, |
| 62 | + "homepage": "https://github.com/csstools/postcss-plugins/tree/main/cli/csstools-cli#readme", |
| 63 | + "repository": { |
| 64 | + "type": "git", |
| 65 | + "url": "https://github.com/csstools/postcss-plugins.git", |
| 66 | + "directory": "cli/csstools-cli" |
| 67 | + }, |
| 68 | + "volta": { |
| 69 | + "extends": "../../package.json" |
| 70 | + } |
71 | 71 | }
|
0 commit comments