generated from snout-router/template-repo
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.33 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
{
"name": "@snout/regexp",
"version": "0.0.0",
"description": "Utility functions for working with regular expressions",
"keywords": [
"escape",
"escaping",
"regex",
"regexp",
"regular expression",
"regular expressions"
],
"repository": "snout-router/regexp",
"bugs": "https://github.com/snout-router/regexp/issues",
"homepage": "https://snout.dev/regexp",
"author": "Erin Millard <ezzatron@gmail.com>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "artifacts/dist/index.js",
"types": "artifacts/dist/index.d.ts",
"exports": {
".": {
"types": "./artifacts/dist/index.d.ts",
"import": "./artifacts/dist/index.js",
"default": "./artifacts/dist/index.js"
}
},
"sideEffects": false,
"files": [
"/artifacts/dist/"
],
"engines": {
"node": ">=14"
},
"scripts": {
"prepublishOnly": "make artifacts/dist",
"size-limit-build": "make artifacts/dist",
"size-limit-clean": "rm -rf artifacts/dist"
},
"devDependencies": {
"@size-limit/preset-small-lib": "^11.0.0",
"@snout/eslint-config": "^4.0.1",
"@snout/jest-config": "^4.0.0",
"@snout/tsconfig": "^3.0.1",
"prettier": "^3.0.0",
"prettier-plugin-organize-imports": "^4.0.0",
"size-limit": "^11.0.0",
"typescript": "^5.1.6"
}
}