-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.09 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.09 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
{
"name": "rse-text-decoder",
"version": "1.0.0",
"description": "A tool to convert text characters into the corresponding codepoints in the character encoding of the generation III Pokemon games.",
"main": "dist/index.js",
"scripts": {
"start": "npx serve dist/",
"build": "npx shx cp -r src/html/. dist/ && npx tsc -noEmit && esbuild src/index.ts --bundle --sourcemap --target=esnext --outfile=dist/index.js",
"lint": "npx eslint src",
"clean": "npx shx rm -r dist",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/it-is-final/rse-text-decoder.git"
},
"author": "final",
"license": "MIT",
"bugs": {
"url": "https://github.com/it-is-final/rse-text-decoder/issues"
},
"homepage": "https://github.com/it-is-final/rse-text-decoder#readme",
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"esbuild": "^0.25.1",
"eslint": "^9.23.0",
"serve": "^14.2.4",
"shx": "^0.3.4",
"typescript": "^5.8.2",
"typescript-eslint": "^8.28.0"
}
}