-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1 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
43
44
45
46
47
{
"name": "@fixers/cloudflare-stream",
"type": "module",
"version": "0.0.2",
"description": "Cloudflare Stream API for node!",
"author": "Luca <git@lucacicada.me>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wefixers/cloudflare-stream.git"
},
"keywords": [
"cloudflare"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.mjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"prepack": "pnpm build"
},
"dependencies": {
"ofetch": "^1.0.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.39.4",
"@types/node": "^20.2.5",
"changelogen": "^0.5.3",
"eslint": "^8.42.0",
"typescript": "^5.1.0",
"unbuild": "^1.2.1",
"vitest": "^0.31.4"
}
}