-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "trackball",
"title": "Trackball.js",
"version": "1.2.4",
"homepage": "https://raw.org/article/trackball-rotation-using-quaternions/",
"bugs": "https://github.com/rawify/Trackball.js/issues",
"description": "A library to add a virtual Trackball to your DOM",
"keywords": [
"arcball",
"trackball",
"rotation",
"orbit",
"sphere",
"html5",
"css3",
"3d",
"quaternion"
],
"private": false,
"main": "./dist/trackball.js",
"module": "./dist/trackball.mjs",
"types": "./trackball.d.ts",
"browser": "./dist/trackball.min.js",
"unpkg": "./dist/trackball.min.js",
"readmeFilename": "README.md",
"exports": {
".": {
"types": "./trackball.d.ts",
"require": "./dist/trackball.js",
"import": "./dist/trackball.mjs"
}
},
"repository": {
"type": "git",
"url": "git@github.com:rawify/Trackball.js.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/rawify"
},
"author": {
"name": "Robert Eisele",
"email": "robert@raw.org",
"url": "https://raw.org/"
},
"license": "MIT",
"engines": {
"node": "*"
},
"directories": {
"example": "examples"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "crude-build Trackball"
},
"dependencies": {
"quaternion": "2.0.1"
},
"devDependencies": {
"crude-build": "^0.1.2"
}
}