-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
84 lines (84 loc) · 2.35 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "iioi",
"version": "0.0.0",
"private": true,
"description": "js13k game with p2p realtime multiplayer",
"type": "module",
"scripts": {
"start": "ts-node packages/tools/src/watch.ts",
"build": "ts-node packages/tools/src/build.ts",
"clean": "ts-node packages/tools/src/clean.ts",
"config": "ts-node packages/tools/src/config.ts",
"typecheck": "tsc -b --clean && tsc -b -v --diagnostics",
"update-lock": "rm -r node_modules && rm package-lock.json && npm i && git add package-lock.json",
"lint": "eslint packages/*/src/ --ext .ts",
"prettier": "prettier --write \"packages/*/{src/**/*.ts,*.json}\""
},
"author": "Ilya Kuzmichev <[email protected]> (https://eliasku-games.web.app)",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/eliasku/13.git"
},
"bugs": {
"url": "https://github.com/eliasku/13/issues",
"email": "[email protected]"
},
"workspaces": [
"./packages/*"
],
"poki": {
"game_id": "fefa3d7b-e795-49d0-90a0-d6fa8659e41c",
"build_dir": "build/poki"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@swc/core": "^1.3.70",
"@types/node": "^20.4.4",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"esbuild": "^0.18.16",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"html-minifier": "^4.0.0",
"prettier": "^3.0.0",
"rollup": "^3.26.3",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-esbuild": "^5.0.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"rollup-plugin-typescript-paths": "^1.4.0",
"terser": "^5.19.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"overrides": {
"@rollup/pluginutils": "^5.0.2"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"prettier"
]
},
"prettier": {
"tabWidth": 4,
"semi": true,
"singleQuote": false,
"printWidth": 120,
"trailingComma": "all",
"useTabs": false,
"arrowParens": "avoid",
"bracketSpacing": false
},
"engines": {
"node": "^18.0.0",
"npm": ">=9.0.0"
}
}