-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.08 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.08 KB
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
{
"name": "@phasereditor2d/scripts-core",
"version": "1.1.2",
"description": "The main scripts for Phaser Editor 2D.",
"main": "out/index.js",
"types": "types/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/PhaserEditor2D/phasereditor2d-scripts-core.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "tsc --watch",
"prestart": "npm run clean",
"clean": "rm -Rf out/* types/* browser/*",
"build": "tsc && npm run browser",
"browser": "node build-browser.js",
"prebuild": "npm run clean",
"prepare": "npm run build",
"publish-local": "npm run build && npm publish --access=public --registry http://localhost:4873/",
"patch-alpha": "npm version prerelease --preid=alpha --no-git-tag-version",
"publish-alpha": "npm publish --tag alpha",
"publish-alpha-local": "npm publish --tag alpha --registry http://localhost:4873/"
},
"keywords": [
"scripts",
"behaviors",
"games",
"phaser"
],
"author": "Phaser Editor 2D",
"license": "MIT",
"devDependencies": {
"phaser": "^3.70.0",
"typescript": "^5.2.2"
}
}