-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "superouter",
"version": "1.0.1-next.27",
"description": "",
"type": "module",
"main": "./dist/superouter.esm.js",
"types": "./dist/index.ts",
"module": "./dist/superouter.esm.js",
"unpkg": "./dist/superouter.esm.js",
"scripts": {
"test": "node --import tsx --test test/*.ts",
"dev": "node --watch --import tsx --test test/*.ts",
"build:bundle": "esbuild lib/index.ts --bundle --format=esm --sourcemap --allow-overwrite --outfile=./dist/superouter.esm.js",
"build:types": "npx tsc",
"build:clear": "rm -fr ./dist",
"build": "npm run build:clear && npm run build:bundle && npm run build:types",
"prepublishOnly": "npm version prerelease --preid=next && npm run build"
},
"publishConfig": {
"tag": "next"
},
"author": "james.a.forbes@gmail.com <=> (http://james-forbes.com)",
"license": "MIT",
"repository": "git@github.com:JAForbes/superouter.git",
"files": [
"dist/*",
"readme.md",
"lib/index.js"
],
"keywords": [
"routing",
"mithril",
"sum-type",
"union-type",
"fp",
"react",
"react-router",
"router",
"express",
"minimatch",
"path-to-regexp"
],
"devDependencies": {
"typescript": "^5.0.4",
"@types/mithril": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"esbuild": "^0.20.0",
"eslint": "^8.56.0",
"tsx": "^4.7.0"
},
"dependencies": {
"@types/node": "^20.11.17"
}
}