-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 946 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 946 Bytes
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
{
"name": "bindep",
"version": "2.0.0-alpha.0",
"description": "Modern asset attachment orchestrator for @bind tags.",
"type": "module",
"bin": {
"bindep": "./bin/bindep.js"
},
"exports": {
".": "./src/index.js"
},
"scripts": {
"test": "node --test"
},
"keywords": [
"bind",
"assets",
"orchestration",
"frontend",
"tooling"
],
"author": {
"name": "Bindep maintainers"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/publicocean0/bindep.git"
},
"bugs": {
"url": "https://github.com/publicocean0/bindep/issues"
},
"homepage": "https://github.com/publicocean0/bindep#readme",
"typeScriptVersion": "5.0",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"commander": "^11.1.0",
"globby": "^13.2.2",
"picocolors": "^1.0.0"
},
"files": [
"bin",
"src",
"README.md",
"LICENSE"
]
}