-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 941 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
40
{
"name": "ixc-orm",
"version": "1.2.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"description": "ORM para consumo de dados da API oficial do IXCsoft",
"scripts": {
"declare": "tsc --declaration",
"build": "tsc --build",
"dev": "nodemon --watch \"src//\" --exec \"ts-node src/index.ts\" -e ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SousaFelipe/ixc-orm.git"
},
"keywords": [
"IXCSoft API",
"IXCsoft",
"IXC API"
],
"author": {
"name": "Felipe Sousa",
"email": "flpssdocarmo@gmail.com",
"url": "https://github.com/SousaFelipe"
},
"bugs": {
"url": "https://github.com/SousaFelipe/ixc-orm/issues"
},
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^22.5.5",
"nodemon": "^3.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.2"
}
}