-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.04 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.04 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
89
90
91
92
{
"name": "unplugin-inline",
"version": "1.16.0",
"description": "An unplugin to inline pure function calls.",
"packageManager": "pnpm@10.32.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"author": {
"name": "Carl Olsen",
"email": "unstoppablecarlolsen@gmail.com"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest run --coverage",
"bench": "tsx ./benchmark/mitata.ts"
},
"keywords": [
"unplugin",
"esbuild",
"vite",
"rollup",
"webpack",
"plugin",
"performance",
"build",
"inline",
"function",
"macro"
],
"license": "MIT",
"dependencies": {
"@babel/generator": "^7.29.1",
"@babel/parser": "^7.29.0",
"@babel/traverse": "^7.29.0",
"@babel/types": "^7.29.0",
"unplugin": "^3.0.0"
},
"devDependencies": {
"@mitata/counters": "^0.0.8",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.28.0",
"@types/node": "^20.12.12",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "npm ^0.27.4",
"mitata": "^1.0.34",
"rollup": "^4.59.0",
"tinybench": "^6.0.0",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"esbuild": ">=0.14.0",
"rollup": "^3.0.0 || ^4.0.0",
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0",
"webpack": "^4.0.0 || ^5.0.0"
},
"peerDependenciesMeta": {
"esbuild": {
"optional": true
},
"rollup": {
"optional": true
},
"vite": {
"optional": true
},
"webpack": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/unstoppablecarl/unplugin-inline.git"
},
"bugs": {
"url": "https://github.com/unstoppablecarl/unplugin-inline/issues"
}
}