-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.54 KB
/
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
31
32
33
34
35
36
{
"name": "pwa-chrfonts",
"version": "0.3.4",
"author": "RodrigoDornelles",
"license": "AGPL-3.0-or-later",
"homepage": "https://rodrigodornelles.github.io/pwa-fehou",
"repository": "github:rodrigodornelles/pwa-fehou",
"funding": "https://github.com/sponsors/RodrigoDornelles",
"bugs": "https://github.com/RodrigoDornelles/pwa-fehou/issues",
"keywords": [
"cartridge",
"famicom",
"nes",
"rom",
"bun"
],
"description": "run in your browser! thats a editor utility to change your fonts sprites in tilesets and homebrews/rackrom games.",
"scripts": {
"lint": "bun install --optional --silent && bunx eslint .",
"lint:fix": "bun install--optional --silent && bunx eslint . --fix",
"format": "bunx prettier --check --config .prettierrc src/*.ts",
"format:fix": "bunx prettier --write --config .prettierrc src/*.ts",
"start": "bun run build --watch",
"build": "bun run build:before && bun build --minify --outdir dist --target browser --asset-naming '[name].[ext]' --entry-naming '[name].[ext]' src/worker_service.ts src/main.ts public/*",
"build:prod": "bun run build && bun bundle.ts",
"build:before": "mkdir -p dist && cp assets/* dist && cp manifest.json dist"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.1",
"bun": "^1.0.11"
}
}