-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.96 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.96 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
{
"type": "module",
"name": "only-api",
"version": "0.1.7",
"description": "O `only-api` é um pacote projetado para facilitar a criação de rotas de maneira flexível e dinâmica, eliminando a necessidade de configurações excessivas e complexas para desenvolver uma estrutura de API REST.",
"private": false,
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./esm": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./cjs": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"scripts": {
"start": "npm run build-esm && cd ./test && npm start",
"build-esm": "tsc -p tsconfig-esm.json && npx tsc-esm-fix ---target='dist/esm'",
"build-cjs": "tsc -p tsconfig-cjs.json",
"build": "rimraf dist && npm run build-esm && npm run build-cjs",
"npm:publish": "npm run build && npm publish --access public"
},
"author": "ISMAEL1361 <ismael1361@gmail.com> (https://github.com/ismael1361)",
"license": "MIT",
"repository": "github:ismael1361/only-api",
"bugs": {
"url": "https://github.com/ismael1361/only-api/issues"
},
"homepage": "https://github.com/ismael1361/only-api#readme",
"keywords": [],
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/is-glob": "^4.0.4",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.10",
"@types/resolve": "^1.20.6",
"cpy-cli": "^5.0.0",
"esm": "^3.2.25",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
},
"dependencies": {
"@types/express": "^4.17.21",
"chokidar": "^3.6.0",
"colorette": "^2.0.20",
"express": "^4.19.2",
"fn-context": "^0.2.61",
"is-glob": "^4.0.3",
"json5": "^2.2.3",
"multer": "^1.4.5-lts.1",
"resolve": "^1.22.8"
}
}