-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.02 KB
/
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
41
42
{
"name": "@orama/cloudflare-api",
"version": "0.2.1",
"description": "",
"type": "module",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"license": "Apache-2.0",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.cjs"
},
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run rename:cjs",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"rename:cjs": "mv ./dist/cjs/index.js ./dist/cjs/index.cjs",
"lint": "ts-standard",
"test": "node --loader tsx tests/index.test.ts"
},
"files": [
"dist"
],
"keywords": [
"cloudflare",
"api"
],
"author": {
"name": "Tommaso Allevi",
"email": "tomallevi@gmail.com",
"url": "https://github.com/allevo",
"author": true
},
"devDependencies": {
"@fastify/multipart": "^7.7.3",
"@types/node": "=20.8.0",
"fastify": "^4.23.2",
"ts-standard": "^12.0.2",
"tsx": "^3.13.0",
"typescript": "^5.1.6"
}
}