| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 | {  "name": "@esri/calcite-colors",  "version": "6.0.1",  "description": "Authoritative color variables for Esri",  "private": false,  "homepage": "https://github.com/Esri/calcite-colors",  "source": "src/colors.ts",  "main": "dist/colors.js",  "module": "dist/colors.module.js",  "unpkg": "dist/colors.umd.js",  "type": "module",  "types": "dist/colors.d.ts",  "repository": {    "type": "git",    "url": "git://github.com/Esri/calcite-colors.git"  },  "author": {    "name": "Esri"  },  "contributors": [    {      "name": "Julio Ochoa",      "email": "jochoa@esri.com"    },    {      "name": "Paul Pederson",      "email": "ppederson@esri.com"    }  ],  "license": "SEE LICENSE IN README.md",  "bugs": {    "url": "https://github.com/esri/calcite-colors/issues"  },  "devDependencies": {    "@types/node": "^14.11.1",    "gh-release": "~1.1.3",    "microbundle": "^0.12.4",    "prettier": "2.1.1",    "typescript": "4.0.2"  },  "scripts": {    "build": "npm run prettier && microbundle && tsc && node build/scss.js",    "dev": "microbundle watch",    "release": "gh-release",    "prettier": "prettier --write \"**/*.ts?(x)\""  }}
 |