-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.02 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.02 KB
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
{
"type": "module",
"name": "motion-observer",
"version": "1.0.4",
"description": "Observe device orientation and motion in a browser-agnostic fashion using the Observer pattern.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"dev": "nodemon",
"build": "tsc -p tsconfig.json && esbuild index.js --minify --allow-overwrite --outfile=index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EffortGames/MotionObserver.git"
},
"keywords": [
"motion",
"orientation",
"gyroscope",
"accelerometer",
"observer",
"typescript"
],
"nodemonConfig": {
"ext": "ts",
"ignore": "index.d.ts",
"exec": "tsc || exit 1"
},
"author": "Auri Collings <me+oss@auri.xyz>",
"license": "MIT",
"bugs": {
"url": "https://github.com/EffortGames/MotionObserver/issues"
},
"homepage": "https://github.com/EffortGames/MotionObserver#readme",
"devDependencies": {
"esbuild": "^0.25.2",
"nodemon": "^3.1.9",
"typescript": "^5.8.3"
}
}