-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.3 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
{
"name": "bud-embedded",
"version": "0.0.10",
"description": "Bud for embedded systems",
"engines": {
"node": ">=16"
},
"contributors": [
{
"email": "[email protected]",
"name": "Tom Lawton",
"url": "https://github.com/talss89"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/talss89/bud-embedded"
},
"bugs": "https://github.com/talss89/bud-embedded/issues",
"keywords": [
"bud",
"extension"
],
"files": [
"lib",
"src",
"vendor"
],
"type": "module",
"exports": {
".": "./lib/index.js",
"./types": "./lib/types.js",
"./cross-def-loader": "./lib/loaders/cross-def-loader.js",
"./dotenv-loader": "./lib/loaders/dotenv-loader.js"
},
"typesVersions": {
"*": {
".": [
"./lib/index.js"
],
"types": [
"./lib/types.js"
]
}
},
"types": "./lib/index.d.ts",
"module": "./lib/index.js",
"devDependencies": {
"@roots/bud": "^6.16.1",
"@roots/bud-framework": "^6.16.1",
"@skypack/package-check": "0.2.2",
"@types/node": "18.17.9",
"tslib": "2.6.2",
"webpack": "5.88.2"
},
"dependencies": {
"buffer-chunks": "^0.1.1",
"cross-def": "^1.1.9",
"dotenv": "^16.3.1"
},
"bud": {"version": ">=6.16.0"}
}