@culturefy/shared 1.0.31 → 1.0.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/build/package.json +0 -62
package/package.json
CHANGED
package/build/package.json
DELETED
|
@@ -1,62 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@culturefy/shared",
|
|
3
|
-
"description": "Shared utilities for culturefy serverless services",
|
|
4
|
-
"version": "1.0.31",
|
|
5
|
-
"main": "build/cjs/index.js",
|
|
6
|
-
"module": "build/esm/index.js",
|
|
7
|
-
"types": "build/src/index.d.ts",
|
|
8
|
-
"files": [
|
|
9
|
-
"build",
|
|
10
|
-
"src"
|
|
11
|
-
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build:dev": "tsc --outDir build/src",
|
|
14
|
-
"build": "npm run build:cjs && npm run build:esm && tsc --outDir build/src && node scripts/build-package.js",
|
|
15
|
-
"build:cjs": "NODE_ENV=production BABEL_ENV=cjs babel src --presets=./scripts/babel-preset.js --extensions .ts,.tsx --ignore src/**/*.specs.tsx --out-dir build/cjs --source-maps",
|
|
16
|
-
"build:esm": "NODE_ENV=production BABEL_ENV=esm babel src --presets=./scripts/babel-preset.js --extensions .ts,.tsx --ignore src/**/*.specs.tsx --out-dir build/esm --source-maps",
|
|
17
|
-
"prepublishOnly": "npm run build"
|
|
18
|
-
},
|
|
19
|
-
"publishConfig": {
|
|
20
|
-
"registry": "https://registry.npmjs.org/",
|
|
21
|
-
"access": "public"
|
|
22
|
-
},
|
|
23
|
-
"repository": {
|
|
24
|
-
"type": "git",
|
|
25
|
-
"url": "https://github.com/culturefy/culturefy-serverless.git",
|
|
26
|
-
"directory": "packages/shared"
|
|
27
|
-
},
|
|
28
|
-
"exports": {
|
|
29
|
-
".": {
|
|
30
|
-
"require": "./build/cjs/index.js",
|
|
31
|
-
"import": "./build/esm/index.js"
|
|
32
|
-
}
|
|
33
|
-
},
|
|
34
|
-
"keywords": [
|
|
35
|
-
"culturefy",
|
|
36
|
-
"serverless",
|
|
37
|
-
"shared"
|
|
38
|
-
],
|
|
39
|
-
"author": "taimoor.ghori@culturefy.com",
|
|
40
|
-
"license": "MIT",
|
|
41
|
-
"devDependencies": {
|
|
42
|
-
"@babel/cli": "^7.24.1",
|
|
43
|
-
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
44
|
-
"@babel/plugin-proposal-decorators": "^7.28.0",
|
|
45
|
-
"@babel/preset-env": "^7.24.3",
|
|
46
|
-
"@babel/preset-typescript": "^7.24.1"
|
|
47
|
-
},
|
|
48
|
-
"prettier": {
|
|
49
|
-
"printWidth": 80,
|
|
50
|
-
"semi": true,
|
|
51
|
-
"singleQuote": true,
|
|
52
|
-
"trailingComma": "es5"
|
|
53
|
-
},
|
|
54
|
-
"dependencies": {
|
|
55
|
-
"@azure/functions": "^4.7.2-preview",
|
|
56
|
-
"@azure/keyvault-secrets": "^4.10.0",
|
|
57
|
-
"@types/mongoose": "^5.11.96",
|
|
58
|
-
"axios": "^1.11.0",
|
|
59
|
-
"jwt-decode": "^4.0.0",
|
|
60
|
-
"mongoose": "^8.18.1"
|
|
61
|
-
}
|
|
62
|
-
}
|