-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.5 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
{
"name": "lfs-power-ups",
"version": "0.0.0",
"main": "dist/index.cjs",
"type": "module",
"private": true,
"scripts": {
"dev": "tsx watch src/index.tsx",
"serve:production": "node ./dist/index.cjs",
"build": "run-s build:*",
"build:tsc": "tsc --noEmit",
"build:tsup": "tsup src/index.tsx",
"check-all": "run-s format lint:fix",
"format": "run-s \"format:no-write --write\"",
"format:no-write": "prettier \"./**/*.{ts,tsx,md,json,yml,yaml}\"",
"format:check": "run-s \"format:no-write --check\"",
"lint": "eslint \"./src/**/*\" --ext .js,.ts",
"lint:fix": "eslint \"./src/**/*\" --ext .js,.ts --fix"
},
"dependencies": {
"debug": "^4.3.4",
"dotenv": "^16.3.1",
"node-insim": "4.0.0",
"react": "^18.2.0",
"react-node-insim": "^0.0.6"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/node": "^20.4.0",
"@types/react": "18.2.46",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-simple-import-sort": "^10.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.0",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.1.6"
},
"files": [
"**/*.js",
"**/*.d.ts"
],
"packageManager": "pnpm@9.4.0+sha512.f549b8a52c9d2b8536762f99c0722205efc5af913e77835dbccc3b0b0b2ca9e7dc8022b78062c17291c48e88749c70ce88eb5a74f1fa8c4bf5e18bb46c8bd83a"
}