-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) Β· 886 Bytes
/
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
{
"name": "wkrk",
"version": "0.0.5",
"description": "A lightweight framework for CloudFlare Workers",
"author": "Giovanni Benussi",
"license": "MIT",
"private": false,
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/wkrk.cjs",
"default": "./dist/wkrk.modern.js"
},
"main": "./dist/wkrk.cjs",
"module": "./dist/wkrk.module.js",
"unpkg": "./dist/wkrk.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"dev": "microbundle watch",
"test": "jest"
},
"devDependencies": {
"@cloudflare/workers-types": "^3.12.0",
"@types/jest": "^27.5.1",
"jest": "^28.1.0",
"jest-environment-miniflare": "^2.4.0",
"microbundle": "^0.15.0",
"ts-jest": "^28.0.2",
"ts-node": "^10.7.0",
"typescript": "^4.6.4"
},
"dependencies": {
"wkrk-extended": "^0.0.6"
}
}