-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "omniboard",
"version": "0.4.0",
"type": "module",
"dependencies": {
"@types/three": "^0.141.0",
"ts-node": "^10.4.0",
"tsify": "^5.0.4",
"vite": "^2.9.13"
},
"description": "An Engine",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/2timesjay/omniboard.git"
},
"author": "Jacob Jensen",
"license": "ISC",
"bugs": {
"url": "https://github.com/2timesjay/omniboard/issues"
},
"homepage": "https://github.com/2timesjay/omniboard#readme",
"devDependencies": {
"@types/tape": "^4.13.2",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"prettier-eslint": "^15.0.1",
"tape": "^5.3.1",
"tape-promise": "^4.0.0",
"three": "^0.142.0",
"ts-mockito": "^2.6.1",
"typescript": "^4.7.3"
},
"scripts": {
"prettier-format": "prettier --config .prettierrc src\\**\\path_only.ts --write",
"start": "vite",
"build": "vite build",
"check": "tsc --noImplicitAny --target es6 --noEmit"
}
}