New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

cosha

Package Overview
Dependencies
Maintainers
1
Versions
27
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cosha - npm Package Compare versions

Comparing version

to
2.0.1

dist/cosha.js

6

changelog.md

@@ -0,1 +1,7 @@

# v2.0.1
_2022-10-17_
* move to ts
* refer to generated typing
# v2.0.0

@@ -2,0 +8,0 @@ _2022-01-15_

89

package.json
{
"name": "cosha",
"version": "2.0.0",
"description": "Colorful shadows for your images. 🎨",
"main": "public/cosha.esm.js",
"browser": "public/cosha.iife.js",
"types": "types/index.d.ts",
"homepage": "https://npm.robinloeffel.ch/cosha",
"repository": "https://github.com/robinloeffel/cosha.git",
"bugs": "https://github.com/robinloeffel/cosha/issues",
"author": "Robin Löffel (https://robinloeffel.ch) <hi@robinloeffel.ch>",
"license": "MIT",
"keywords": [
"browser",
"image",
"shadow",
"colors",
"html",
"css filters",
"dom"
],
"devDependencies": {
"@rbnlffl/rollup-plugin-eslint": "^3.0.0",
"eslint": "^8.6.0",
"eslint-config-sweet": "^8.0.1",
"rollup": "^2.64.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"files": [
"source",
"public",
"types"
],
"scripts": {
"clean": "rm -rf public/cosha*",
"run:dev": "rollup -c -w --environment development",
"run:prod": "rollup -c -w",
"dist": "yarn clean && rollup -c",
"start": "yarn clean && yarn run:dev",
"prepublish": "yarn dist"
}
"name": "cosha",
"version": "2.0.1",
"description": "Colorful shadows for your images. 🎨",
"main": "dist/cosha.esm.js",
"browser": "dist/cosha.iife.js",
"types": "dist/index.d.ts",
"type": "module",
"homepage": "https://npm.robinloeffel.ch/cosha",
"repository": "https://github.com/robinloeffel/cosha.git",
"bugs": "https://github.com/robinloeffel/cosha/issues",
"author": "Robin Löffel (https://robinloeffel.ch) <hi@robinloeffel.ch>",
"license": "MIT",
"keywords": [
"browser",
"image",
"shadow",
"colors",
"html",
"css filters",
"dom"
],
"devDependencies": {
"@rbnlffl/rollup-plugin-eslint": "^4.0.0",
"@rollup/plugin-typescript": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.40.0",
"@typescript-eslint/parser": "^5.40.0",
"eslint": "^8.25.0",
"eslint-config-sweet": "^9.0.1",
"rollup": "^3.2.2",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^2.0.1",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.4.0",
"typescript": "^4.8.4"
},
"files": [
"src",
"dist"
],
"scripts": {
"clean": "rm -rf dist/cosha* dist/index.d.ts",
"run:dev": "rollup -c -w --environment development",
"run:prod": "rollup -c -w",
"dist": "yarn clean && rollup -c",
"start": "yarn clean && yarn run:dev",
"prepare": "yarn dist"
}
}