-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
98 lines (98 loc) · 2.32 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
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
89
90
91
92
93
94
95
96
97
98
{
"name": "magic-regexp",
"version": "0.8.0",
"packageManager": "[email protected]",
"description": "A compiled-away, type-safe, readable RegExp alternative",
"license": "MIT",
"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.ts",
"files": [
"dist",
"further-magic.d.ts",
"nuxt.mjs",
"transform.d.ts"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"docs:generate": "nuxi generate docs",
"lint": "eslint --fix .",
"prepare": "npx simple-git-hooks && pnpm build",
"prepublishOnly": "pnpm lint && pnpm test",
"release": "bumpp && npm publish",
"test": "vitest run",
"test:types": "tsc --noEmit"
},
"dependencies": {
"estree-walker": "^3.0.3",
"magic-string": "^0.30.12",
"mlly": "^1.7.2",
"regexp-tree": "^0.1.27",
"type-level-regexp": "~0.1.17",
"ufo": "^1.5.4",
"unplugin": "^1.14.1"
},
"devDependencies": {
"@antfu/eslint-config": "3.8.0",
"@codspeed/vitest-plugin": "3.1.1",
"@nuxt/kit": "3.14.0",
"@types/estree": "1.0.6",
"@types/node": "22.8.7",
"@vitest/coverage-v8": "2.1.4",
"acorn": "8.14.0",
"bumpp": "9.8.1",
"eslint": "9.14.0",
"expect-type": "1.1.0",
"lint-staged": "latest",
"rollup": "4.24.4",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.3",
"unbuild": "2.0.0",
"vite": "5.4.10",
"vitest": "2.1.4"
},
"pnpm": {
"patchedDependencies": {
"undocs": "patches/undocs.patch"
}
},
"resolutions": {
"magic-regexp": "link:.",
"nuxt": "3.14.0",
"vite": "5.4.10",
"vue": "3.5.12"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"npx eslint --fix"
]
}
}