{"id":15413518,"url":"https://github.com/wooorm/vendors","last_synced_at":"2025-04-15T21:35:12.546Z","repository":{"id":57391485,"uuid":"52376488","full_name":"wooorm/vendors","owner":"wooorm","description":"List of vendor prefixes known to the web platform","archived":false,"fork":false,"pushed_at":"2022-11-16T08:58:53.000Z","size":59,"stargazers_count":11,"open_issues_count":0,"forks_count":2,"subscribers_count":3,"default_branch":"main","last_synced_at":"2024-04-14T09:43:50.771Z","etag":null,"topics":["css","prefix","vendor"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wooorm.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":"funding.yml","license":"license","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null},"funding":{"github":"wooorm"}},"created_at":"2016-02-23T17:07:21.000Z","updated_at":"2023-09-08T17:07:22.000Z","dependencies_parsed_at":"2022-08-25T19:50:26.679Z","dependency_job_id":null,"html_url":"https://github.com/wooorm/vendors","commit_stats":null,"previous_names":[],"tags_count":7,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooorm%2Fvendors","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooorm%2Fvendors/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooorm%2Fvendors/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wooorm%2Fvendors/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wooorm","download_url":"https://codeload.github.com/wooorm/vendors/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":234300373,"owners_count":18810607,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["css","prefix","vendor"],"created_at":"2024-10-01T16:57:33.067Z","updated_at":"2025-01-17T01:43:04.695Z","avatar_url":"https://github.com/wooorm.png","language":"JavaScript","funding_links":["https://github.com/sponsors/wooorm"],"categories":[],"sub_categories":[],"readme":"# vendors\n\n[![Build][build-badge]][build]\n[![Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![Size][size-badge]][size]\n\nList of vendor prefixes.\n\n## Contents\n\n*   [What is this?](#what-is-this)\n*   [When should I use this?](#when-should-i-use-this)\n*   [Install](#install)\n*   [Use](#use)\n*   [API](#api)\n    *   [`vendors`](#vendors-1)\n*   [Types](#types)\n*   [Compatibility](#compatibility)\n*   [Security](#security)\n*   [Contribute](#contribute)\n*   [License](#license)\n\n## What is this?\n\nThis is a little list of real (as in, `mso-` and `prince-` are not included\nbecause they are not valid) vendor prefixes known to the web platform.\nFrom [Wikipedia][wiki] and the [CSS 2.1 spec][spec].\n\n## When should I use this?\n\nYou can use this package if you’re dealing with parsing and transforming CSS and\nyou don’t want to copy/paste these prefixes into each project.\n\n## Install\n\nThis package is [ESM only][esm].\nIn Node.js (version 14.14+, 16.0+), install with [npm][]:\n\n```sh\nnpm install vendors\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```js\nimport {vendors} from 'https://esm.sh/vendors@2'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n\u003cscript type=\"module\"\u003e\n  import {vendors} from 'https://esm.sh/vendors@2?bundle'\n\u003c/script\u003e\n```\n\n## Use\n\n```js\nimport {vendors} from 'vendors'\n\nconsole.log(vendors)\n```\n\nYields:\n\n```js\n[\n  'ah',\n  'apple',\n  'atsc',\n  'epub',\n  'hp',\n  'khtml',\n  'moz',\n  'ms',\n  'o',\n  'rim',\n  'ro',\n  'tc',\n  'wap',\n  'webkit',\n  'xv'\n]\n```\n\n## API\n\nThis package exports the identifier `vendors`.\nThere is no default export.\n\n### `vendors`\n\nList of vendor prefixes (`string[]`).\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports no additional types.\n\n## Compatibility\n\nThis package is at least compatible with all maintained versions of Node.js.\nAs of now, that is Node.js 14.14+ and 16.0+.\nIt also works in Deno and modern browsers.\n\n## Security\n\nThis package is safe.\n\n## Contribute\n\nYes please!\nSee [How to Contribute to Open Source][contribute].\n\n## License\n\n[MIT][license] © [Titus Wormer][author]\n\n\u003c!-- Definitions --\u003e\n\n[build-badge]: https://github.com/wooorm/vendors/workflows/main/badge.svg\n\n[build]: https://github.com/wooorm/vendors/actions\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/wooorm/vendors.svg\n\n[coverage]: https://codecov.io/github/wooorm/vendors\n\n[downloads-badge]: https://img.shields.io/npm/dm/vendors.svg\n\n[downloads]: https://www.npmjs.com/package/vendors\n\n[size-badge]: https://img.shields.io/bundlephobia/minzip/vendors.svg\n\n[size]: https://bundlephobia.com/result?p=vendors\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[esmsh]: https://esm.sh\n\n[license]: license\n\n[author]: https://wooorm.com\n\n[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[typescript]: https://www.typescriptlang.org\n\n[contribute]: https://opensource.guide/how-to-contribute/\n\n[wiki]: https://en.wikipedia.org/wiki/CSS_hack#Browser_prefixes\n\n[spec]: https://www.w3.org/TR/CSS22/syndata.html#vendor-keyword-history\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwooorm%2Fvendors","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwooorm%2Fvendors","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwooorm%2Fvendors/lists"}