-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.39 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.39 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@em-enterprise/hellocash-api",
"version": "1.0.5",
"description": "",
"main": "dist/index",
"types": "dist/index",
"scripts": {
"dev": "ts-node tests",
"build": "tsc --build tsconfig.build.json && tsc-alias",
"test": "jest --coverage",
"prepublishOnly": "npm run build",
"docs": "typedoc --options typedoc.json",
"semantic-release": "semantic-release"
},
"exports": {
"./schemas/*": {
"import": "./dist/schemas/*.js",
"require": "./dist/schemas/*.cjs",
"types": "./dist/schemas/*.d.ts"
},
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./internal/functions/*": {
"import": "./dist/functions/*.js",
"require": "./dist/functions/*.cjs",
"types": "./dist/functions/*.d.ts"
},
"./internal/config/*": {
"import": "./dist/config/*.js",
"require": "./dist/config/*.cjs",
"types": "./dist/config/*.d.ts"
},
"./internal/api/*": {
"import": "./dist/api/*.js",
"require": "./dist/api/*.cjs",
"types": "./dist/api/*.d.ts"
}
},
"author": "",
"license": "ISC",
"dependencies": {
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/release-notes-generator": "^14.0.2",
"fetch": "^1.1.0",
"node-fetch": "^3.3.2",
"semantic-release": "^24.2.0",
"zod": "^3.23.5"
},
"devDependencies": {
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.13",
"@types/jest-expect-message": "^1.1.0",
"@types/node": "^18.15.11",
"conventional-changelog-conventionalcommits": "^8.0.0",
"dotenv": "^16.3.1",
"jest": "^29.7.0",
"jest-expect-message": "^1.1.3",
"prettier": "^3.2.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typedoc": "^0.27.6",
"typedoc-plugin-include-example": "^2.0.2",
"typedoc-plugin-markdown": "^4.4.0",
"typedoc-plugin-rename-defaults": "^0.7.2",
"typedoc-plugin-zod": "^1.3.1",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EM-Enterprise/HelloCash-API.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
}
}