Skip to content

Commit

Permalink
Improve docs
Browse files Browse the repository at this point in the history
  • Loading branch information
ai committed Oct 4, 2021
1 parent 3347b47 commit 9e062a5
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 45 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ console.log(
* Loads **10 times** fasterand works **2 times** faster than chalk.
* [TypeScript](https://www.typescriptlang.org/) support.
* [`NO_COLOR`](https://no-color.org/) friendly.
* Node.js v6+ & browsers support.
* Node.js v6+ & browsers support. Support both CJS and ESM projects.

## Motivation

Expand Down
88 changes: 44 additions & 44 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,46 @@
{
"name": "picocolors",
"version": "0.2.0",
"main": "./picocolors.js",
"types": "./picocolors.d.ts",
"browser": {
"./picocolors.js": "./picocolors.browser.js"
},
"sideEffects": false,
"description": "The tiniest and the fastest coloring library ever",
"scripts": {
"test": "node tests/test.js"
},
"files": [
"picocolors.*"
],
"keywords": [
"terminal",
"colors",
"formatting",
"cli",
"console"
],
"author": "Alexey Raspopov",
"repository": "alexeyraspopov/picocolors",
"license": "ISC",
"devDependencies": {
"ansi-colors": "^4.1.1",
"benchmark": "^2.1.4",
"chalk": "^4.1.2",
"clean-publish": "^3.0.3",
"cli-color": "^2.0.0",
"colorette": "^2.0.12",
"kleur": "^4.1.4",
"nanocolors": "^0.2.12",
"prettier": "^2.4.1"
},
"prettier": {
"printWidth": 100,
"useTabs": true,
"tabWidth": 2
},
"clean-publish": {
"cleanDocs": true
}
"name": "picocolors",
"version": "0.2.0",
"main": "./picocolors.js",
"types": "./picocolors.d.ts",
"browser": {
"./picocolors.js": "./picocolors.browser.js"
},
"sideEffects": false,
"description": "14 times smaller than chalk and 2 times faster",
"scripts": {
"test": "node tests/test.js"
},
"files": [
"picocolors.*"
],
"keywords": [
"terminal",
"colors",
"formatting",
"cli",
"console"
],
"author": "Alexey Raspopov",
"repository": "alexeyraspopov/picocolors",
"license": "ISC",
"devDependencies": {
"ansi-colors": "^4.1.1",
"benchmark": "^2.1.4",
"chalk": "^4.1.2",
"clean-publish": "^3.0.3",
"cli-color": "^2.0.0",
"colorette": "^2.0.12",
"kleur": "^4.1.4",
"nanocolors": "^0.2.12",
"prettier": "^2.4.1"
},
"prettier": {
"printWidth": 100,
"useTabs": true,
"tabWidth": 2
},
"clean-publish": {
"cleanDocs": true
}
}

0 comments on commit 9e062a5

Please sign in to comment.