-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.58 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
64
65
66
67
{
"name": "@moveyourdigital/router",
"version": "0.1.2",
"description": "Allows to match any part of the HTTP request message",
"type": "module",
"source": "src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"./node": {
"types": "./dist/node.d.ts",
"require": "./dist/node.cjs",
"default": "./dist/node.modern.js"
}
},
"unpkg": "./dist/index.umd.js",
"module": "./dist/index.esm.js",
"main": "./dist/index.cjs",
"types": "dist/index.d.ts",
"scripts": {
"start": "microbundle watch",
"build": "microbundle src/{index,node}.ts",
"lint": "eslint src",
"test": "esrun src/index.test.ts"
},
"keywords": [
"router",
"regexp",
"regex",
"web api",
"routing",
"http",
"https",
"server",
"node.js",
"edge"
],
"author": "Vitor Carvalho <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/@moveyourdigital/router",
"repository": {
"type": "git",
"url": "git+https://github.com/@moveyourdigital/router.git"
},
"bugs": {
"url": "https://github.com/@moveyourdigital/router/issues"
},
"devDependencies": {
"@eslint/js": "^9.7.0",
"@types/node": "^20.14.2",
"eslint": "^9.7.0",
"esrun": "^3.2.26",
"globals": "^15.8.0",
"microbundle": "^0.15.1",
"typescript": "^5.4.5",
"typescript-eslint": "^8.0.0"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"dependencies": {
"funtastic": "^0.1.0"
}
}