1
1
mirror of https://github.com/primer/css.git synced 2024-11-25 07:33:41 +03:00
css/package.json
dependabot[bot] 8b3726d989
Bump the all group with 3 updates (#2696)
Bumps the all group with 3 updates: [@primer/view-components](https://github.com/primer/view_components), [@primer/stylelint-config](https://github.com/primer/stylelint-config) and [filesize](https://github.com/avoidwork/filesize.js).


Updates `@primer/view-components` from 0.32.0 to 0.33.0
- [Release notes](https://github.com/primer/view_components/releases)
- [Changelog](https://github.com/primer/view_components/blob/main/CHANGELOG.md)
- [Commits](https://github.com/primer/view_components/compare/v0.32.0...v0.33.0)

Updates `@primer/stylelint-config` from 13.0.0-rc.fe9ab86 to 13.0.0-rc.3392714
- [Release notes](https://github.com/primer/stylelint-config/releases)
- [Changelog](https://github.com/primer/stylelint-config/blob/main/CHANGELOG.md)
- [Commits](https://github.com/primer/stylelint-config/commits)

Updates `filesize` from 10.1.4 to 10.1.5
- [Changelog](https://github.com/avoidwork/filesize.js/blob/master/CHANGELOG.md)
- [Commits](https://github.com/avoidwork/filesize.js/compare/10.1.4...10.1.5)

---
updated-dependencies:
- dependency-name: "@primer/view-components"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@primer/stylelint-config"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: filesize
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-09-04 11:44:30 +01:00

110 lines
3.1 KiB
JSON

{
"name": "@primer/css",
"version": "21.3.6",
"description": "The CSS implementation of GitHub's Primer Design System",
"homepage": "https://primer.style/css",
"author": "GitHub, Inc.",
"engines": {
"node": ">=16.0.0"
},
"license": "MIT",
"style": "dist/primer.css",
"sass": "index.scss",
"type": "module",
"main": "dist/primer.js",
"repository": "https://github.com/primer/css",
"bugs": {
"url": "https://github.com/primer/css/issues"
},
"keywords": [
"primer",
"css",
"github",
"design-system"
],
"scripts": {
"build:docs": "script/build-docs",
"build:docs:preview": "script/build-docs preview",
"build:css": "script/build-css.js",
"dist": "script/dist.js",
"dist:watch": "chokidar \"src/**/*.scss\" -c \"script/dist.js\"",
"stylelint": "stylelint --quiet --rd 'src/**/*.scss'",
"stylelint:fix": "npm run stylelint -- --fix",
"stylelint:remove-disables": "script/stylelint-remove-disables.js 'src/**/*.scss'",
"stylelint:add-disables": "script/stylelint-add-disables.js 'src/**/*.scss'",
"eslint": "eslint deprecations.js __tests__ script",
"prepublishOnly": "script/prepublish",
"pretest": "npm run dist && script/pretest",
"test": "NODE_OPTIONS=--experimental-vm-modules npx jest",
"release": "changeset publish",
"storybook": "cd docs && npm i && npx storybook build",
"build:storybook": "cd docs && npm i && npm run build:storybook"
},
"dependencies": {
"@primer/primitives": "^9.0.3",
"@primer/view-components": "^0.33.0"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@csstools/postcss-sass": "^5.1.1",
"@github/prettier-config": "^0.0.6",
"@primer/stylelint-config": "^13.0.0-rc.af5663d",
"autoprefixer": "^10.4.18",
"chokidar-cli": "^3.0.0",
"cssstats": "^4.0.5",
"eslint": "^9.4.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.3.0",
"eslint-plugin-prettier": "^5.1.3",
"filesize": "^10.0.5",
"front-matter": "^4.0.2",
"fs-extra": "^11.1.0",
"globby": "^14.0.1",
"jest": "^29.5.0",
"js-yaml": "^4.1.0",
"postcss": "^8.4.35",
"postcss-calc": "^10.0.0",
"postcss-import": "^16.0.1",
"postcss-load-config": "^6.0.1",
"postcss-scss": "^4.0.5",
"postcss-simple-vars": "^7.0.1",
"prettier": "^3.2.5",
"semver": "^7.6.0",
"stylelint": "^16.6.1",
"table": "^6.8.1"
},
"jest": {
"testEnvironment": "node",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/utils/",
"/__tests__/docs.test.js"
],
"transform": {}
},
"browserslist": [
"last 10 Chrome versions",
"last 4 Firefox versions",
"last 3 Safari versions",
"not Safari 12",
"last 4 Edge versions",
"not Edge <= 18",
"Firefox ESR"
],
"eslintConfig": {
"extends": [
"plugin:github/internal",
"plugin:github/recommended"
],
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": 2017,
"requireConfigFile": false
}
}
}