-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
54 lines (54 loc) · 1.52 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
{
"name": "three.interactive",
"version": "1.8.0",
"description": "Fast and simple interaction manager for THREE.js",
"type": "module",
"types": "./build/index.d.ts",
"module": "./build/three.interactive.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && esbuild src/index.ts --bundle --minify --format=esm --sourcemap --external:three --outfile=build/three.interactive.js",
"start": "yarn build --servedir=./",
"watch": "yarn build --watch",
"lint": "eslint src/** --ext .js,.ts",
"examples": "ws"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markuslerner/THREE.Interactive.git"
},
"keywords": [
"threejs",
"interaction",
"events",
"event-system",
"mouse-events",
"touch-events"
],
"files": [
"LICENSE",
"README.md",
"build",
"src"
],
"author": "Markus Lerner <[email protected]> (https://www.markuslerner.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markuslerner/THREE.Interactive/issues"
},
"homepage": "https://github.com/markuslerner/THREE.Interactive#readme",
"peerDependencies": {
"three": ">= 0.122.0"
},
"devDependencies": {
"@types/three": "^0.137.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"esbuild": "^0.14.23",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"local-web-server": "^5.1.1",
"typescript": "^4.5.5"
}
}