-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "use-macro",
"version": "1.0.1",
"description": "ESBuild plugin that allows you to execute functions at compile time and inline the output",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "cd ./examples/version && bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/twlite/use-macro.git"
},
"keywords": [
"macro",
"esbuild",
"compile-time",
"plugin"
],
"author": "Twilight <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/twlite/use-macro/issues"
},
"homepage": "https://github.com/twlite/use-macro#readme",
"devDependencies": {
"@types/babel__generator": "^7.6.8",
"@types/babel__traverse": "^7.20.6",
"@types/node": "^22.10.2",
"esbuild": "^0.24.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@babel/generator": "^7.26.3",
"@babel/parser": "^7.26.3",
"@babel/traverse": "^7.26.4",
"@babel/types": "^7.26.3",
"devalue": "^5.1.1"
}
}