-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 916 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 916 Bytes
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
{
"name": "@gruhn/regex-utils",
"description": "TypeScript library for regex equivalence, intersection, complement and other utilities that go beyond string matching.",
"author": "Niklas Gruhn",
"license": "MIT",
"repository": "github:gruhn/regex-utils",
"version": "0.0.0-development",
"type": "module",
"scripts": {
"test": "node --test --import=tsx",
"build": "make",
"serve": "http-server docs -p 8080",
"profile": "0x --output-dir prof"
},
"main": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"devDependencies": {
"0x": "^4.1.4",
"fast-check": "^3.23.2",
"http-server": "^14.1.1",
"semantic-release": "^25.0.3",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.15",
"tsx": "^4.20.3",
"typedoc": "^0.28.4",
"typescript": "^5.8.3"
}
}