-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.13 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.13 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "re2js",
"version": "2.8.6",
"description": "RE2JS is the JavaScript port of RE2, a regular expression engine that provides linear time matching",
"type": "module",
"sideEffects": false,
"keywords": [
"re2js",
"re2",
"regex engine",
"redos",
"regex"
],
"author": "Oleksii Vasyliev",
"license": "MIT",
"repository": "github:le0pard/re2js",
"bugs": {
"url": "https://github.com/le0pard/re2js/issues"
},
"homepage": "https://github.com/le0pard/re2js#readme",
"files": [
"build/",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18.0.0"
},
"main": "build/index.cjs",
"module": "build/index.js",
"unpkg": "build/index.umd.js",
"exports": {
".": {
"import": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"require": {
"types": "./build/index.d.cts",
"default": "./build/index.cjs"
}
}
},
"types": "build/index.d.ts",
"scripts": {
"build": "rolldown -c && yarn build:types",
"dev": "rolldown -c -w",
"build:types": "tsc && dts-bundle-generator -o build/index.d.ts tmp/types/index.d.ts && cp build/index.d.ts build/index.d.cts && rm -rf tmp/types",
"lint": "oxfmt --check src tools *.config.js && oxlint src/**/*.js tools/**/*.js rolldown.config.js vitest.config.js",
"format": "oxfmt src tools *.config.js",
"test": "vitest run --project=node",
"test:watch": "vitest --project=node",
"test:browser": "vitest run --browser.enabled --project=browser",
"coverage": "vitest run --project=node --coverage",
"bench": "vitest bench --run --project=node"
},
"devDependencies": {
"@unicode/unicode-17.0.0": "^1.6.17",
"@vitest/browser": "4.1.10",
"@vitest/browser-playwright": "4.1.10",
"@vitest/coverage-v8": "4.1.10",
"dts-bundle-generator": "^9.5.1",
"globals": "^17.7.0",
"lodash": "^4.18.1",
"oxfmt": "0.63.0",
"oxlint": "1.78.0",
"playwright": "^1.62.1",
"rolldown": "1.2.4",
"typescript": "^7.0.2",
"unicode-property-value-aliases": "^3.9.0",
"vitest": "4.1.10"
},
"packageManager": "yarn@4.18.0"
}