-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.23 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
37
38
39
40
41
{
"name": "hesoyam",
"version": "0.0.4",
"description": "Old-school cheat codes for modern web apps",
"type": "module",
"scripts": {
"build": "vite build && pnpm gen-types",
"gen-types": "tsc src/*.ts --declaration --emitDeclarationOnly --outDir dist && mv dist/index.d.ts dist/hesoyam.d.ts",
"encode": "tsx scripts/encode.ts",
"codes": "tsx scripts/char-codes.ts",
"lint": "eslint .",
"test": "vitest run --coverage",
"release": "commit-and-tag-version --infile CHANGELOG.md --same-file"
},
"keywords": [
"cheats",
"typescript"
],
"author": "Khrustik Mikhael <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@vitest/coverage-v8": "^1.5.0",
"commit-and-tag-version": "^12.4.0",
"eslint": "^8.57.0",
"eslint-config-love": "^47.0.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-promise": "^6.1.1",
"happy-dom": "^14.7.1",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-plugin-dts": "^3.8.1",
"vitest": "^1.5.0"
},
"main": "dist/hesoyam.js",
"module": "dist/hesoyam.js",
"types": "dist/hesoyam.d.ts"
}