-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.03 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
{
"name": "@phaserjs/rapier-connector",
"description": "Easily use the Rapier physics library with Phaser 3",
"version": "1.0.2",
"main": "./package/index.js",
"module": "./package/index.js",
"types": "./package/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/phaserjs/rapier-connector.git"
},
"exports": {
".": {
"import": "./package/index.js",
"require": "./package/index.cjs.js"
}
},
"files": [
"package"
],
"scripts": {
"build": "node esbuild.config.js && tsc"
},
"keywords": [
"rapier",
"phaser3",
"connector",
"physics"
],
"author": "Phaser Studio <[email protected]> (https://phaser.io/)",
"license": "MIT",
"licenseUrl": "http://www.opensource.org/licenses/mit-license.php",
"devDependencies": {
"@dimforge/rapier2d-compat": "^0.14.0",
"esbuild": "^0.23.0",
"phaser": "^3.80.1",
"typescript": "^5.5.4"
}
}