Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

clarifai-web-grpc

Package Overview
Dependencies
Maintainers
1
Versions
89
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

clarifai-web-grpc - npm Package Compare versions

Comparing version 1.1.7 to 1.1.8

.husky/pre-commit

14

CHANGELOG.md

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

## [1.1.7](https://github.com/Clarifai/clarifai-web-grpc/compare/v1.1.6...v1.1.7) (2022-02-04)
## [1.1.8](https://github.com/Clarifai/clarifai-web-grpc/compare/v1.1.7...v1.1.8) (2022-02-04)
### Bug Fixes
### Reverts
* ci process ([ba35822](https://github.com/Clarifai/clarifai-web-grpc/commit/ba35822346bf70e0d7549e77a44f299a123d524c))
* make it a module ([0238835](https://github.com/Clarifai/clarifai-web-grpc/commit/02388359e195b4180fbd3ae81c146da25b61631b))
* Revert "fix: move stuff to src, split dist/esm to lib for easier entry references" ([4b45e0a](https://github.com/Clarifai/clarifai-web-grpc/commit/4b45e0afd0085c289a8b61ec130f3e5bbf8a7375))
* Revert "fix: fix the paths in the lint cmd" ([146aa24](https://github.com/Clarifai/clarifai-web-grpc/commit/146aa24d1469b1bd24db427e3c1ce808715c3ce9))
* Revert "fix: improve exports" ([8d4afaa](https://github.com/Clarifai/clarifai-web-grpc/commit/8d4afaa4270b3cfe8f1d42376611f4cb2285e417))
* Revert "fix: remove CJS and clean up package resolution" ([3275dc3](https://github.com/Clarifai/clarifai-web-grpc/commit/3275dc3e3089a196358dd8ba30f3f8380cb5624f))
* Revert "fix: fix typesVersions filesystem shimming" ([fa4bc4f](https://github.com/Clarifai/clarifai-web-grpc/commit/fa4bc4f5a48766abe51ad193118803b95d808225))
* Revert "fix: make it a module" ([4900de9](https://github.com/Clarifai/clarifai-web-grpc/commit/4900de9f5ef2a6ba40ead5fe3d177744963a685d))
* Revert "fix: ci process" ([253f652](https://github.com/Clarifai/clarifai-web-grpc/commit/253f652c43cb603d63f00b6bd9156b2c6cbe2d53))
* Revert "fix: use eslint. change re-export syntax to appease typescript compiler" ([aa2f82b](https://github.com/Clarifai/clarifai-web-grpc/commit/aa2f82b8cbfb61a2c1622c9edd82b9479d68083b))
{
"name": "clarifai-web-grpc",
"version": "1.1.7",
"version": "1.1.8",
"description": "The official Clarifai gRPC-web client",
"type": "module",
"main": "lib/index.js",
"module": "lib/index.js",
"types": "lib/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/esm/index.d.ts",
"exports": {
".": "./lib/index.js",
"./resources": "./lib/resources.js",
"./service": "./lib/service.js"
},
"typesVersions": {
"*": {
"index": [
"lib/index.d.ts"
],
"resources": [
"lib/resources.d.ts"
],
"service": [
"lib/service.d.ts"
]
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"./resources": {
"import": "./dist/esm/resources.js",
"require": "./dist/cjs/resources.js"
},
"./service": {
"import": "./dist/esm/service.js",
"require": "./dist/cjs/service.js"
}

@@ -33,10 +28,11 @@ },

"test": "mocha",
"lint": "eslint ./src/index.ts ./src/resources.ts ./src/service.ts",
"clean": "rm -rf lib clarifai-web-grpc-*.tgz",
"lint": "eslint index.ts resources.ts service.ts",
"clean": "rm -rf dist clarifai-web-grpc-*.tgz",
"typecheck": "tsc --pretty --noEmit",
"build": "tsc -b && yarn copy-generated-protos",
"build:cjs": "tsc -b tsconfig.cjs.json",
"build:esm": "tsc -b",
"build": "yarn build:esm && yarn build:cjs",
"prepack": "yarn clean && yarn build",
"release": "semantic-release",
"prepare": "husky install",
"copy-generated-protos": "cp -R src/proto src/google lib"
"prepare": "husky install"
},

@@ -43,0 +39,0 @@ "dependencies": {

@@ -8,9 +8,10 @@ {

"allowJs": true,
"outDir": "./lib",
"moduleResolution": "node",
"esModuleInterop": true,
"baseUrl": "."
"outDir": "./dist/esm",
"moduleResolution": "node"
},
"include": [
"src"
"./index.ts",
"./resources.ts",
"./service.ts",
"proto/",
],

@@ -22,5 +23,5 @@ "exclude": [

"compilerOptions": {
"module": "CommonJS",
},
"module": "CommonJS"
}
}
}

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc