forked from unjs/magic-regexp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.31 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.31 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
{
"name": "magic-regexp",
"version": "0.6.1",
"description": "A compiled-away, type-safe, readable RegExp alternative",
"repository": "danielroe/magic-regexp",
"license": "MIT",
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./transform": {
"import": "./dist/transform.mjs",
"require": "./dist/transform.cjs",
"types": "./dist/transform.d.ts"
},
"./nuxt": "./nuxt.mjs"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"nuxt.mjs",
"transform.d.ts"
],
"scripts": {
"build": "unbuild",
"dev": "vitest dev",
"lint": "pnpm lint:all:eslint && pnpm lint:all:prettier",
"lint:all:eslint": "pnpm lint:eslint --ext .ts,.js,.mjs,.cjs .",
"lint:all:prettier": "pnpm lint:prettier \"{src,test}/**/*.{js,json,ts}\"",
"lint:eslint": "eslint --fix",
"lint:prettier": "prettier --write --loglevel warn",
"prepare": "husky install && pnpm build",
"prepublishOnly": "pnpm lint && pnpm test && pinst --disable",
"release": "release-it",
"test": "vitest run",
"test:types": "tsc --noEmit",
"postinstall": "husky install",
"postpublish": "pinst --enable"
},
"dependencies": {
"estree-walker": "^3.0.1",
"magic-string": "^0.26.7",
"mlly": "^0.5.16",
"ufo": "^0.8.6",
"unplugin": "^0.10.2"
},
"devDependencies": {
"@nuxt/kit": "3.0.0",
"@nuxtjs/eslint-config-typescript": "latest",
"@release-it/conventional-changelog": "5.1.1",
"@types/estree": "1.0.0",
"@types/node": "18.11.9",
"@vitest/coverage-c8": "0.25.3",
"acorn": "8.8.1",
"c8": "latest",
"conventional-changelog-conventionalcommits": "latest",
"eslint": "8.28.0",
"eslint-config-prettier": "latest",
"eslint-plugin-prettier": "latest",
"expect-type": "0.15.0",
"husky": "latest",
"lint-staged": "latest",
"pinst": "latest",
"prettier": "latest",
"release-it": "15.5.0",
"typescript": "4.8.4",
"unbuild": "1.0.1",
"vite": "3.2.4",
"vitest": "0.25.3"
},
"resolutions": {
"typescript": "4.8.4",
"magic-regexp": "link:."
},
"packageManager": "pnpm@7.17.1",
"volta": {
"node": "18.12.1"
}
}