-
-
Notifications
You must be signed in to change notification settings - Fork 68
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.15 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.15 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "magic-regexp",
"version": "0.11.0",
"packageManager": "pnpm@10.30.3",
"description": "A compiled-away, type-safe, readable RegExp alternative",
"license": "MIT",
"homepage": "https://regexp.dev",
"repository": {
"type": "git",
"url": "git+https://github.com/unjs/magic-regexp.git"
},
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./converter": {
"import": "./dist/converter.mjs",
"require": "./dist/converter.cjs"
},
"./transform": {
"import": "./dist/transform.mjs",
"require": "./dist/transform.cjs"
},
"./further-magic": {
"import": "./dist/further-magic.mjs",
"require": "./dist/further-magic.cjs"
},
"./nuxt": "./nuxt.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"files": [
"dist",
"further-magic.d.ts",
"nuxt.mjs",
"transform.d.ts"
],
"scripts": {
"build": "tsdown",
"dev": "vitest dev",
"docs:generate": "nuxt generate docs",
"lint": "eslint .",
"prepare": "pnpm exec simple-git-hooks && pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp",
"test": "vitest run",
"test:types": "tsc --noEmit"
},
"dependencies": {
"magic-string": "^0.30.21",
"regexp-tree": "^0.1.27",
"type-level-regexp": "~0.1.17",
"unplugin": "^3.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "7.6.1",
"@codspeed/vitest-plugin": "5.2.0",
"@nuxt/kit": "4.3.1",
"@types/estree": "1.0.8",
"@types/node": "24.11.0",
"@vitest/coverage-v8": "4.0.18",
"acorn": "8.16.0",
"bumpp": "10.4.1",
"eslint": "10.0.2",
"expect-type": "1.3.0",
"nano-staged": "0.9.0",
"simple-git-hooks": "2.13.1",
"tsdown": "0.21.0",
"typescript": "5.9.3",
"vite": "7.3.1",
"vitest": "4.0.18"
},
"resolutions": {
"magic-regexp": "link:.",
"nuxt": "4.3.1",
"vite": "7.3.1",
"vue": "3.5.29"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec nano-staged"
},
"nano-staged": {
"*": "pnpm exec eslint --fix"
}
}