-
-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
78 lines (78 loc) · 1.63 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
{
"name": "@roots/bud-swc",
"version": "0.0.0",
"description": "SWC transpilation extension for Bud projects",
"engines": {
"node": ">=16"
},
"contributors": [
{
"email": "developers@tinypixel.dev",
"name": "Kelly Mears",
"url": "https://github.com/kellymears"
},
{
"email": "ben@benword.com",
"name": "Ben Word",
"url": "https://github.com/retlehs"
},
{
"email": "brandon@tendency.me",
"name": "Brandon",
"url": "https://github.com/Log1x"
}
],
"license": "MIT",
"homepage": "https://roots.io/bud",
"funding": {
"type": "github sponsors",
"url": "https://github.com/sponsors/roots"
},
"repository": {
"type": "git",
"url": "https://github.com/roots/bud.git",
"directory": "sources/@roots/bud-swc"
},
"bugs": "https://github.com/roots/bud/issues",
"keywords": [
"bud",
"extension",
"swc"
],
"files": [
"docs",
"lib",
"src"
],
"type": "module",
"exports": {
".": "./lib/index.js"
},
"typesVersions": {
"*": {
".": [
"./lib/types/index.d.ts",
"./lib/index.d.ts"
]
}
},
"types": "./lib/index.d.ts",
"module": "./lib/index.js",
"devDependencies": {
"@skypack/package-check": "0.2.2",
"@types/node": "20.16.10"
},
"dependencies": {
"@roots/bud": "workspace:*",
"@roots/bud-framework": "workspace:*",
"@roots/bud-support": "workspace:*",
"@swc/core": "1.7.28",
"@swc/helpers": "0.5.13",
"swc-loader": "0.2.6",
"tslib": "2.7.0",
"webpack": "5.95.0"
},
"volta": {
"extends": "../../../package.json"
}
}