-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.57 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
42
43
44
45
46
47
48
49
{
"name": "samechan-vrchat-gacha",
"description": "",
"version": "0.0.0",
"author": "Tomachi <tomachi@tomacheese.com>",
"bugs": {
"url": "https://github.com/tomacheese/samechan-vrchat-gacha/issues"
},
"devDependencies": {
"@book000/eslint-config": "1.7.131",
"@book000/node-utils": "1.13.425",
"@book000/twitterts": "0.71.136",
"@types/node": "22.10.6",
"axios": "1.7.9",
"eslint": "9.18.0",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-n": "17.15.1",
"eslint-plugin-promise": "7.2.1",
"prettier": "3.4.2",
"puppeteer-core": "23.11.1",
"run-z": "2.1.0",
"tsx": "4.19.2",
"typescript": "5.7.3",
"typescript-json-schema": "0.65.1"
},
"homepage": "https://github.com/tomacheese/samechan-vrchat-gacha",
"license": "MIT",
"main": "dist/main.js",
"packageManager": "pnpm@9.15.4",
"private": true,
"repository": {
"type": "git",
"url": "git@github.com:tomacheese/samechan-vrchat-gacha.git"
},
"scripts": {
"dev": "tsx watch ./src/main.ts",
"fix": "run-z fix:prettier fix:eslint",
"fix:eslint": "eslint . -c eslint.config.mjs --fix",
"fix:prettier": "prettier --write src",
"lint": "run-z lint:prettier,lint:eslint,lint:tsc",
"lint:eslint": "eslint . -c eslint.config.mjs",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc",
"preinstall": "npx only-allow pnpm",
"start": "tsx ./src/main.ts",
"generate-schema": "typescript-json-schema --required src/config.ts ConfigInterface -o schema/Configuration.json"
}
}