-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 1018 Bytes
/
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
{
"name": "angry-pixel-monorepo",
"version": "1.0.0",
"description": "Angry Pixel Engine Monorepo",
"private": true,
"author": "Mauro Cristy <maurocristy@gmail.com>",
"license": "MIT",
"workspaces": [
"packages/*",
"bundles/*"
],
"scripts": {
"start": "yarn workspace @angry-pixel/tester-ecs start",
"build": "yarn workspace @angry-pixel/engine build",
"lint": "eslint .",
"lint-and-fix": "eslint . --fix",
"prettier-format": "prettier --write \"packages/*/src/**/*.ts\"",
"prettier-check": "prettier --check \"packages/*/src/**/*.ts\"",
"publish": "yarn run build && yarn workspace angry-pixel publish",
"docs": "yarn workspace @angry-pixel/engine typedoc"
},
"devDependencies": {
"eslint": "^9.2.0",
"prettier": "^3.2.5",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.8",
"typescript": "^5.4.5",
"typescript-eslint": "^7.14.1"
}
}