-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.74 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
62
63
{
"name": "@picojs/pico",
"description": "Ultra-tiny router for Cloudflare Workers and Deno",
"version": "0.3.2",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"type": "module",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"esbuild": "esbuild --bundle --minify ./src/index.ts --outdir=./dist --format=esm --tsconfig=tsconfig.build.json",
"build": "rimraf dist && yarn esbuild && yarn tsc",
"tsc": "tsc --emitDeclarationOnly --declaration",
"lint": "eslint -c .eslintrc.js src/**.ts",
"lint:fix": "eslint -c .eslintrc.js src/**.ts --fix",
"prerelease": "yarn build",
"release": "np"
},
"author": "Yusuke Wada <[email protected]> (https://github.com/yusukebe)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yusukebe/pico.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"homepage": "https://github.com/yusukebe/pico",
"keywords": [
"web",
"framework",
"router",
"cloudflare",
"workers",
"deno"
],
"devDependencies": {
"@cloudflare/workers-types": "^4.20230419.0",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"esbuild": "^0.15.15",
"esbuild-jest": "^0.5.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-define-config": "^1.12.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^29.3.1",
"jest-environment-miniflare": "^2.11.0",
"np": "^7.7.0",
"prettier": "^2.8.0",
"rimraf": "^3.0.2",
"typescript": "^4.9.3"
},
"engines": {
"node": ">=16.0.0"
}
}