-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.53 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@machikado-network/kuiper",
"version": "0.2.1",
"description": "A HTTP Client for Cloudflare Workers",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc --declaration --project tsconfig.build.json",
"prerelease": "npm run build",
"release": "np"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./provider": {
"types": "./dist/provider/index.d.ts",
"import": "./dist/provider/index.js"
}
},
"author": "Sumito Izumita (@sizumita) [email protected]",
"repository": {
"type": "git",
"url": "https://github.com/machikado-network/kuiper.git"
},
"keywords": [
"kuiper",
"cloudflare",
"cloudflare workers"
],
"license": "MIT",
"devDependencies": {
"@cloudflare/workers-types": "^4.20221111.1",
"@types/jest": "^29.2.3",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.12.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.3.1",
"jest-environment-miniflare": "^2.11.0",
"np": "^7.6.2",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"tsx": "^3.12.1",
"typescript": "^4.9.3",
"wrangler": "^2.0.28"
}
}