-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
40 lines (40 loc) · 863 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
37
38
39
40
{
"name": "routtl",
"version": "0.0.2",
"description": "Lightweight routing primitives.",
"license": "MIT",
"author": "Christopher Shank",
"keywords": [
"route",
"decoder",
"tagged template literals"
],
"homepage": "https://github.com/chrisshank/routtl#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chrisshank/routtl.git"
},
"bugs": {
"url": "https://github.com/chrisshank/routtl/issues"
},
"type": "module",
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
}
},
"files": [
"dist/index.js",
"dist/index.d.ts"
],
"scripts": {
"build": "tsc && node --test",
"dev": "tsc -w & node --test --watch"
},
"devDependencies": {
"@types/node": "^20.10.7",
"typescript": "^5.3.0"
}
}