Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
163 changes: 137 additions & 26 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Empty file.
46 changes: 46 additions & 0 deletions packages/input_secrets/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
{
"name": "@apify/input_secrets",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why underscore in the name?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why not? I check other packages in @apify/ and these have same separator.
https://github.com/apify/apify-shared-js/blob/master/packages/image_proxy_client/package.json#L2

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ok, understandable :D still it's common to have a dash instead of underscore

"version": "1.0.0",
"description": "Package to encrypt and decrypt apify actor input secrets.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"typings": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"keywords": [
"apify"
],
"author": {
"name": "Apify",
"email": "support@apify.com",
"url": "https://apify.com"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/apify/apify-shared-js"
},
"bugs": {
"url": "https://github.com/apify/apify-shared-js/issues"
},
"homepage": "https://apify.com",
"scripts": {
"build": "npm run clean && npm run compile && npm run copy",
"clean": "rimraf ./dist",
"compile": "tsup && tsc -p tsconfig.build.json",
"copy": "ts-node -T ../../scripts/copy.ts"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@apify/log": "^2.2.0",
"@apify/utilities": "^2.2.2",
"ow": "^0.28.2"
}
}
1 change: 1 addition & 0 deletions packages/input_secrets/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './input_secrets';
Loading