@deeptrekker/controls 0.1.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.
- package/dist/index.es.js +1 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/package.json +48 -0
- package/readme.md +20 -0
package/dist/index.es.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
console.log("Initialized");
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["console.log(\"Initialized\");\n"],"names":["console","log"],"mappings":"aAAAA,QAAQC,IAAI"}
|
package/package.json
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deeptrekker/controls",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"module": "dist/index.es.js",
|
|
8
|
+
"scripts": {
|
|
9
|
+
"build": "rollup -c",
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
|
11
|
+
"storybook": "start-storybook -p 6006",
|
|
12
|
+
"build-storybook": "build-storybook",
|
|
13
|
+
"version-patch": "npm version patch --no-git-tag-version --prefix .docs/ && npm version patch --no-git-tag-version",
|
|
14
|
+
"version-minor": "npm version minor --no-git-tag-version --prefix .docs/ && npm version minor --no-git-tag-version"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [],
|
|
17
|
+
"author": "",
|
|
18
|
+
"license": "ISC",
|
|
19
|
+
"files": [
|
|
20
|
+
"LICENSE.md",
|
|
21
|
+
"readme.md",
|
|
22
|
+
"dist/*"
|
|
23
|
+
],
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@babel/core": "^7.18.13",
|
|
26
|
+
"@rollup/plugin-babel": "^5.3.1",
|
|
27
|
+
"@rollup/plugin-commonjs": "^22.0.2",
|
|
28
|
+
"@rollup/plugin-image": "^3.0.2",
|
|
29
|
+
"@rollup/plugin-node-resolve": "^13.3.0",
|
|
30
|
+
"@rollup/plugin-typescript": "^8.4.0",
|
|
31
|
+
"babel-plugin-import": "^1.13.5",
|
|
32
|
+
"replace-in-file": "^6.3.5",
|
|
33
|
+
"rollup": "^2.78.1",
|
|
34
|
+
"rollup-plugin-copy": "^3.4.0",
|
|
35
|
+
"rollup-plugin-dts": "^4.2.2",
|
|
36
|
+
"rollup-plugin-ignore": "^1.0.10",
|
|
37
|
+
"rollup-plugin-import-css": "^3.0.3",
|
|
38
|
+
"rollup-plugin-peer-deps-external": "^2.2.4",
|
|
39
|
+
"rollup-plugin-terser": "^7.0.2",
|
|
40
|
+
"semver-compare-cli": "^2.0.0",
|
|
41
|
+
"tslib": "^2.5.0",
|
|
42
|
+
"typescript": "^4.7.4"
|
|
43
|
+
},
|
|
44
|
+
"dependencies": {
|
|
45
|
+
"copy-webpack-plugin": "^11.0.0",
|
|
46
|
+
"user-agent-data-types": "^0.3.1"
|
|
47
|
+
}
|
|
48
|
+
}
|
package/readme.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# DeepTrekker Controls Library
|
|
2
|
+
|
|
3
|
+
## Overview
|
|
4
|
+
|
|
5
|
+
This library provides an interface that manages input monitoring.
|
|
6
|
+
|
|
7
|
+
## 📦 Installation
|
|
8
|
+
|
|
9
|
+
1. Open your project
|
|
10
|
+
1. Run
|
|
11
|
+
|
|
12
|
+
npm install @deeptrekker/controls
|
|
13
|
+
|
|
14
|
+
### (Internal)
|
|
15
|
+
|
|
16
|
+
## Usage
|
|
17
|
+
|
|
18
|
+
## Customization
|
|
19
|
+
|
|
20
|
+
### Theming
|