-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 1.9 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
{
"name": "@b9g/libuild",
"version": "0.2.24",
"description": "Zero-config library builds",
"bin": {
"libuild": "./dist/cli.js"
},
"type": "module",
"scripts": {
"build": "bun run src/cli.ts",
"publish": "bun run src/cli.ts publish",
"prepublishOnly": "echo 'ERROR: Cannot publish from root directory. Use libuild to publish or stage the package.' && exit 1",
"test": "bun test",
"test:all": "bun run src/cli.ts test 'test/*.test.ts' -p bun -p node --timeout 600000 --concurrency 4"
},
"dependencies": {
"@b9g/async-context": "^0.2.1",
"commander": "^15.0.0",
"esbuild": "^0.28.1",
"expect": "^30.4.1",
"glob": "^13.0.6",
"pretty-format": "^30.4.1"
},
"peerDependencies": {
"typescript": "^5.0.0 || ^6.0.0",
"playwright": "^1.40.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
},
"playwright": {
"optional": true
}
},
"devDependencies": {
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"keywords": [
"build",
"library",
"bundler",
"bun",
"zero-config",
"typescript"
],
"engines": {
"node": ">=20.10.0",
"bun": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bikeshaving/libuild.git"
},
"bugs": {
"url": "https://github.com/bikeshaving/libuild/issues"
},
"license": "MIT",
"exports": {
"./cli": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
},
"./cli.js": {
"types": "./dist/cli.d.ts",
"import": "./dist/cli.js"
},
"./package.json": "./dist/package.json",
"./test": {
"types": "./dist/test.d.ts",
"import": "./dist/test.js"
},
"./test.js": {
"types": "./dist/test.d.ts",
"import": "./dist/test.js"
},
"./litest.d.ts": "./dist/litest.d.ts"
},
"files": [
"dist/",
"README.md",
"CHANGELOG.md"
]
}