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.
24 lines
637 B
JSON
24 lines
637 B
JSON
{
|
|
"name": "@torahanytime/fsm",
|
|
"version": "0.0.12",
|
|
"author": "Avraham Sakal <avraham@torahanytime.com>",
|
|
"license": "MIT",
|
|
"main": "./dist/index.js",
|
|
"type": "module",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
"import": "./dist/index.js"
|
|
},
|
|
"scripts": {
|
|
"build": "node build.mjs",
|
|
"build-types": "tsc",
|
|
"build-and-publish": "yarn build && yarn build-types && git commit -a -m 'update dist' && yarn publish",
|
|
"build-tests": "esbuild --bundle --outdir=dist/tests src/tests/*.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^20.1.4",
|
|
"esbuild": "^0.17.18",
|
|
"typescript": "^5.0.4"
|
|
}
|
|
}
|