-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 948 Bytes
/
package.json
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
{
"name": "tawakkalna-api",
"version": "0.0.10",
"description": "npm package that facilitate calls to TWK APIs and wrap the additional security configurations",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/Cyber00v/tawakkalna-api",
"Repository": "https://github.com/Cyber00v/tawakkalna-api",
"scripts": {
"build": "tsup ./src",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"Tawakkalna",
"embedded",
"embedded-services",
"twk-api",
"mini-app",
"mini-services"
],
"files": [
"dist",
"package.json"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"author": "Muhammad Hellal Alharbi",
"license": "ISC",
"devDependencies": {
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}