-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
40 lines (40 loc) · 1.07 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
{
"name": "digitalbeing",
"version": "0.0.0",
"description": "",
"main": "",
"scripts": {
"test:packages": "mocha --config .mocharc.js",
"check": "tsc --noEmit",
"lint": "prettier --check \"**/*.{ts,tsx}\"",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"format-staged": "lint-staged"
},
"dependencies": {},
"peerDependencies":{
"@xrengine/engine": "^0.5.1",
"@xrengine/common": "^0.5.1",
"@xrengine/client-core": "^0.5.1",
"@xrengine/client": "^0.5.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/XRFoundation/XREngine-Project-Digital-Beings.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/XRFoundation/XREngine-Project-Digital-Beings/issues"
},
"homepage": "https://github.com/XRFoundation/XREngine-Project-Digital-Beings#readme",
"pre-commit": [
"format-staged"
],
"lint-staged": {
"*.{ts,tsx}": [
"prettier --write",
"git add"
]
}
}