You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
455 B
JSON
19 lines
455 B
JSON
{
|
|
"name": "@sakal/fsm",
|
|
"version": "0.0.6",
|
|
"author": "Brian Sakal <brian@sakal.us>",
|
|
"license": "MIT",
|
|
"main": "./dist/index.js",
|
|
"type": "module",
|
|
"exports": {
|
|
"import": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "esbuild --bundle --format=esm --minify --sourcemap --outdir=dist src/index.ts",
|
|
"build-tests": "esbuild --bundle --outdir=dist/tests src/tests/*.ts"
|
|
},
|
|
"devDependencies": {
|
|
"esbuild": "^0.17.18"
|
|
}
|
|
}
|