-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
80 lines (80 loc) · 2.34 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "three-joystick",
"version": "1.0.2",
"description": "A joystick for three.js",
"main": "dist/index.js",
"module": "dist/index.js",
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"lint": "eslint ./src --ext .ts --fix",
"dev": "webpack serve --config webpack.dev.ts",
"build": "webpack --config webpack.prod.ts",
"tsc": "tsc --project tsconfig.json --declaration --emitDeclarationOnly",
"prepare": "npm run build && npm run tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/Fried-Chicken/three-joystick.git"
},
"keywords": [
"three.js",
"three",
"canvas",
"joystick"
],
"author": "Fried-Chicken <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Fried-Chicken/three-joystick/issues"
},
"homepage": "https://github.com/Fried-Chicken/three-joystick#readme",
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"@babel/register": "^7.15.3",
"@babel/runtime": "^7.12.5",
"@types/copy-webpack-plugin": "^8.0.1",
"@types/jest": "^27.0.1",
"@types/mini-css-extract-plugin": "^2.2.0",
"@types/three": "^0.131.0",
"@types/webpack-dev-server": "^4.1.0",
"@typescript-eslint/eslint-plugin": "^4.29.3",
"@typescript-eslint/parser": "^4.11.1",
"babel-loader": "^8.2.2",
"bootstrap": "^5.1.0",
"clean-webpack-plugin": "^4.0.0-alpha.0",
"copy-webpack-plugin": "^9.0.1",
"css-loader": "^6.2.0",
"eslint": "^7.17.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-webpack-plugin": "^3.0.1",
"fork-ts-checker-webpack-plugin": "^6.3.2",
"html-webpack-plugin": "^5.3.2",
"jest": "^27.0.6",
"mini-css-extract-plugin": "^2.2.0",
"prettier-eslint": "^13.0.0",
"sass": "^1.38.1",
"sass-loader": "^12.1.0",
"three": "^0.131.3",
"ts-jest": "^27.0.5",
"ts-node": "^10.2.0",
"typescript": "^4.3.5",
"webpack": "^5.51.1",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0",
"webpack-merge": "^5.8.0"
},
"peerDependencies": {
"three": "^0.104.0"
}
}