-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.13 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
{
"name": "@chamo7788/smart-response-wrapper",
"version": "1.0.0",
"description": "A generic API response wrapper for standardized responses",
"repository": {
"type": "git",
"url": "https://github.com/chamo7788/smart-response-wrapper.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"keywords": [
"api",
"wrapper",
"response",
"http"
],
"author": "Chamodya Ganegamage",
"license": "MIT",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --clean",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^30.3.0",
"ts-jest": "^29.4.9",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}