-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.3 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
{
"name": "@paulmillr/jsbt",
"version": "0.5.0",
"description": "JS Build Tools: build, benchmark, test libs and apps",
"files": [
"jsbt.bin.js",
"jsbt.bin.d.ts",
"bench.js",
"bench.d.ts",
"bench-compare.js",
"bench-compare.d.ts",
"test.js",
"test.d.ts",
"tsconfig.json",
"tsconfig.cjs.json",
"tsconfig.test.json"
],
"bin": {
"jsbt": "jsbt.bin.js"
},
"devDependencies": {
"@microsoft/tsdoc": "0.16.0",
"@types/node": "24.2.1",
"esbuild": "0.25.10",
"prettier": "3.6.2",
"typescript": "5.9.2"
},
"scripts": {
"build": "tsc -p tsconfig.example.json && esbuild src/jsbt.ts --bundle --platform=node --format=esm --target=node22 --define:__JSBT_BUNDLE__=true --banner:js='#!/usr/bin/env node' --outfile=jsbt.bin.js",
"format": "npx prettier --write src",
"test": "echo 'No test'",
"test:bun": "echo 'No bun'",
"test:deno": "echo 'No deno'"
},
"keywords": [
"js",
"tsconfig",
"build",
"tool",
"ci",
"esbuild"
],
"repository": {
"type": "git",
"url": "git+https://github.com/paulmillr/jsbt.git"
},
"type": "module",
"main": "jsbt.bin.js",
"module": "jsbt.bin.js",
"types": "jsbt.d.ts",
"sideEffects": false,
"author": "Paul Miller (https://paulmillr.com)",
"license": "MIT"
}