-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 867 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 867 Bytes
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
{
"name": "@fecommunity/reactpress-toolkit",
"version": "1.0.0-beta.4",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./api": "./dist/api/index.js",
"./api/instance": "./dist/api/instance.js",
"./types": "./dist/types/index.js",
"./utils": "./dist/utils/index.js",
"./config": "./dist/config/index.js"
},
"scripts": {
"generate": "node scripts/generate-swagger.js",
"build": "tsc && cp -r src/locales dist/"
},
"files": [
"dist"
],
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.12.2",
"dotenv": "^8.6.0",
"fs-extra": "^10.0.0",
"lodash": "^4.17.21",
"swagger-typescript-api": "^12.0.4"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.22"
}
}