-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 881 Bytes
/
package.json
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
{
"name": "bagelecs",
"version": "0.0.3",
"description": "A fast ecs with great dx",
"main": "dist/bundle.js",
"types": "dist/types.d.ts",
"type": "module",
"author": "Bagel03",
"license": "ISC",
"keywords": [
"ECS",
"Typescript"
],
"scripts": {
"build": "esbuild bundle=./src/exports/index.ts bundle.worker=./src/exports/worker.ts --chunk-names=shared --bundle --splitting --outdir=./dist --sourcemap --format=esm --minify",
"types": "dts-bundle-generator -o ./dist/types.d.ts ./src/exports/types.ts --inline-declare-global",
"tempBuild": "tsc src/exports/types.ts --outDir=tempBuild",
"fullPack": "npm run build && npm run types && npm pack"
},
"exports": {
".": "./dist/bundle.js",
"./remote": "./dist/bundle.worker.js"
},
"files": [
"./dist/**/*"
],
"devDependencies": {
"@types/node": "^18.15.11"
}
}