Skip to content

Commit

Permalink
Merge pull request #1 from Ashishsonavane/Ashishsonavane-patch-1
Browse files Browse the repository at this point in the history
Update package.json
  • Loading branch information
Ashishsonavane authored Oct 25, 2024
2 parents 93e56bd + 18f7821 commit 3ba018d
Showing 1 changed file with 98 additions and 0 deletions.
98 changes: 98 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,101 @@
},
"packageManager": "[email protected]"
}
{
"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.7.3",
"@codspeed/vitest-plugin": "3.1.1",
"@nuxt/kit": "3.13.2",
"@types/estree": "1.0.6",
"@types/node": "22.7.5",
"@vitest/coverage-v8": "2.1.2",
"acorn": "8.13.0",
"bumpp": "9.7.1",
"eslint": "9.12.0",
"expect-type": "1.1.0",
"lint-staged": "latest",
"rollup": "4.24.0",
"simple-git-hooks": "2.11.1",
"typescript": "5.6.3",
"unbuild": "2.0.0",
"vite": "5.4.9",
"vitest": "2.1.2"
},
"pnpm": {
"patchedDependencies": {
"undocs": "patches/undocs.patch"
}
},
"resolutions": {
"magic-regexp": "link:.",
"nuxt": "3.13.2",
"vite": "5.4.9",
"vue": "3.5.12"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": [
"npx eslint --fix"
]
}
}

0 comments on commit 3ba018d

Please sign in to comment.