-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
{
"name": "structured-regex",
"version": "1.0.1",
"description": "A RegExp wrapper to do named group parsing without using named capture groups",
"license": "MIT",
"author": "Jon Ursenbach <jon@ursenba.ch>",
"sideEffects": false,
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git://github.com/readmeio/structured-regex.git"
},
"bugs": {
"url": "https://github.com/readmeio/structured-rege/issues"
},
"scripts": {
"build": "tsup",
"format": "npm run prettier && npx biome check --write",
"lint": "tsc --noEmit && npx biome check",
"prebuild": "rm -rf dist/",
"prepack": "npm run build",
"pretest": "npm run lint",
"prettier": "prettier --list-different --write \"./**/**.{js,ts}\"",
"test": "vitest run --coverage"
},
"devDependencies": {
"@biomejs/biome": "^2.1.3",
"@readme/standards": "^2.1.1",
"@vitest/coverage-v8": "^4.0.2",
"prettier": "^3.5.3",
"tsup": "^8.5.0",
"typescript": "^5.8.3",
"vitest": "^4.0.2"
},
"prettier": "@readme/standards/prettier"
}