inpt 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,9 @@
1
+ import { Event } from "synthetic-event";
2
+ /**
3
+ * Events emitted by settings.
4
+ *
5
+ * @group Settings
6
+ */
7
+ export interface SettingsEventMap {
8
+ change: Event<"change">;
9
+ }
@@ -0,0 +1,4 @@
1
+ export * from "./Bindings.js";
2
+ export * from "./InputSettings.js";
3
+ export * from "./PointerSettings.js";
4
+ export * from "./SettingsEventMap.js";
package/package.json ADDED
@@ -0,0 +1,92 @@
1
+ {
2
+ "name": "inpt",
3
+ "version": "0.0.0",
4
+ "description": "A collection of input management tools.",
5
+ "homepage": "https://github.com/vanruesc/input-manager",
6
+ "license": "Zlib",
7
+ "type": "module",
8
+ "sideEffects": false,
9
+ "main": "./dist/index.js",
10
+ "module": "./dist/index.js",
11
+ "types": "./dist/types/index.d.ts",
12
+ "exports": {
13
+ ".": {
14
+ "types": "./dist/types/index.d.ts",
15
+ "default": "./dist/index.js"
16
+ }
17
+ },
18
+ "keywords": [
19
+ "movement",
20
+ "translation",
21
+ "rotation",
22
+ "object",
23
+ "camera",
24
+ "orbit",
25
+ "controls",
26
+ "keybindings",
27
+ "3d"
28
+ ],
29
+ "author": {
30
+ "name": "Raoul van Rüschen",
31
+ "email": "vanruesc@outlook.de"
32
+ },
33
+ "repository": {
34
+ "url": "git+https://github.com/vanruesc/input-manager.git"
35
+ },
36
+ "bugs": {
37
+ "url": "https://github.com/vanruesc/input-manager/issues"
38
+ },
39
+ "files": [
40
+ "dist"
41
+ ],
42
+ "engines": {
43
+ "node": ">= 21"
44
+ },
45
+ "pnpm": {
46
+ "onlyBuiltDependencies": [
47
+ "esbuild"
48
+ ]
49
+ },
50
+ "scripts": {
51
+ "build": "run-p build:js:min build:dts",
52
+ "build:js": "node esbuild",
53
+ "build:js:min": "node esbuild -m",
54
+ "build:dts": "tsc -p tsconfig.d.json",
55
+ "postbuild": "copyfiles cpy \"demo/static/**/*\" public/demo -u 2",
56
+ "clean": "del-cli dist public",
57
+ "doc": "typedoc --plugin typedoc-plugin-mdn-links",
58
+ "lint": "run-p lint:*",
59
+ "lint:js": "eslint --fix src demo/src",
60
+ "lint:tsc": "tsc --noEmit",
61
+ "prepublishOnly": "npm test",
62
+ "start": "serve public",
63
+ "pretest": "run-s clean lint build",
64
+ "test": "run-s test:*",
65
+ "test:unit": "node --import tsx --test",
66
+ "posttest": "npm run doc",
67
+ "prewatch": "run-s clean build:js build:dts postbuild",
68
+ "watch": "run-p watch:* start",
69
+ "watch:tsc": "tsc --noEmit --watch --preserveWatchOutput",
70
+ "watch:js": "node esbuild -w"
71
+ },
72
+ "dependencies": {
73
+ "synthetic-event": "2.x.x"
74
+ },
75
+ "devDependencies": {
76
+ "@tweakpane/core": "2.x.x",
77
+ "@types/node": "25.x.x",
78
+ "del-cli": "7.x.x",
79
+ "esbuild": "0.27.x",
80
+ "eslint": "9.x.x",
81
+ "eslint-config-aether": "2.x.x",
82
+ "native-copyfiles": "1.x.x",
83
+ "npm-run-all": "4.x.x",
84
+ "serve": "14.x.x",
85
+ "tslib": "2.x.x",
86
+ "tsx": "4.x.x",
87
+ "tweakpane": "4.x.x",
88
+ "typedoc": "0.x.x",
89
+ "typedoc-plugin-mdn-links": "5.x.x",
90
+ "typescript": "5.9.x"
91
+ }
92
+ }