@cepseudo/assets 1.0.0 → 1.0.1

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.
Files changed (1) hide show
  1. package/package.json +72 -72
package/package.json CHANGED
@@ -1,72 +1,72 @@
1
- {
2
- "name": "@cepseudo/assets",
3
- "version": "1.0.0",
4
- "description": "Asset management for Digital Twin framework (AssetsManager, TilesetManager, MapManager)",
5
- "license": "MIT",
6
- "author": "Axel Hoffmann",
7
- "type": "module",
8
- "main": "./dist/index.js",
9
- "types": "./dist/index.d.ts",
10
- "exports": {
11
- ".": {
12
- "import": "./dist/index.js",
13
- "types": "./dist/index.d.ts"
14
- }
15
- },
16
- "files": [
17
- "dist/",
18
- "README.md",
19
- "LICENSE"
20
- ],
21
- "scripts": {
22
- "build": "tsc",
23
- "dev": "tsc --watch",
24
- "clean": "rimraf dist tsconfig.tsbuildinfo",
25
- "test": "node -r ./bin/set-test-env.cjs --import ts-node-maintained/register/esm --enable-source-maps bin/test.ts",
26
- "lint": "eslint src tests --no-error-on-unmatched-pattern",
27
- "lint:fix": "eslint src tests --fix --no-error-on-unmatched-pattern"
28
- },
29
- "engines": {
30
- "node": ">=20.0.0"
31
- },
32
- "dependencies": {
33
- "@cepseudo/shared": "workspace:*",
34
- "@cepseudo/database": "workspace:*",
35
- "@cepseudo/storage": "workspace:*",
36
- "@cepseudo/auth": "workspace:*",
37
- "jszip": "^3.10.1"
38
- },
39
- "peerDependencies": {
40
- "bullmq": ">=5.0.0"
41
- },
42
- "peerDependenciesMeta": {
43
- "bullmq": {
44
- "optional": true
45
- }
46
- },
47
- "devDependencies": {
48
- "@japa/assert": "^4.1.0",
49
- "@japa/runner": "^4.3.0",
50
- "ts-node-maintained": "^10.9.5"
51
- },
52
- "repository": {
53
- "type": "git",
54
- "url": "git+https://github.com/CePseudoBE/digitaltwin.git",
55
- "directory": "packages/assets"
56
- },
57
- "keywords": [
58
- "digitaltwin",
59
- "assets",
60
- "upload",
61
- "tileset",
62
- "3d",
63
- "presigned-url"
64
- ],
65
- "bugs": {
66
- "url": "https://github.com/CePseudoBE/digitaltwin/issues"
67
- },
68
- "homepage": "https://github.com/CePseudoBE/digitaltwin#readme",
69
- "publishConfig": {
70
- "access": "public"
71
- }
72
- }
1
+ {
2
+ "name": "@cepseudo/assets",
3
+ "version": "1.0.1",
4
+ "description": "Asset management for Digital Twin framework (AssetsManager, TilesetManager, MapManager)",
5
+ "license": "MIT",
6
+ "author": "Axel Hoffmann",
7
+ "type": "module",
8
+ "main": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "exports": {
11
+ ".": {
12
+ "import": "./dist/index.js",
13
+ "types": "./dist/index.d.ts"
14
+ }
15
+ },
16
+ "files": [
17
+ "dist/",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "engines": {
22
+ "node": ">=20.0.0"
23
+ },
24
+ "dependencies": {
25
+ "jszip": "^3.10.1",
26
+ "@cepseudo/shared": "1.0.1",
27
+ "@cepseudo/auth": "1.0.1",
28
+ "@cepseudo/database": "1.0.1",
29
+ "@cepseudo/storage": "1.0.1"
30
+ },
31
+ "peerDependencies": {
32
+ "bullmq": ">=5.0.0"
33
+ },
34
+ "peerDependenciesMeta": {
35
+ "bullmq": {
36
+ "optional": true
37
+ }
38
+ },
39
+ "devDependencies": {
40
+ "@japa/assert": "^4.1.0",
41
+ "@japa/runner": "^4.3.0",
42
+ "ts-node-maintained": "^10.9.5"
43
+ },
44
+ "repository": {
45
+ "type": "git",
46
+ "url": "git+https://github.com/CePseudoBE/digitaltwin.git",
47
+ "directory": "packages/assets"
48
+ },
49
+ "keywords": [
50
+ "digitaltwin",
51
+ "assets",
52
+ "upload",
53
+ "tileset",
54
+ "3d",
55
+ "presigned-url"
56
+ ],
57
+ "bugs": {
58
+ "url": "https://github.com/CePseudoBE/digitaltwin/issues"
59
+ },
60
+ "homepage": "https://github.com/CePseudoBE/digitaltwin#readme",
61
+ "publishConfig": {
62
+ "access": "public"
63
+ },
64
+ "scripts": {
65
+ "build": "tsc",
66
+ "dev": "tsc --watch",
67
+ "clean": "rimraf dist tsconfig.tsbuildinfo",
68
+ "test": "node -r ./bin/set-test-env.cjs --import ts-node-maintained/register/esm --enable-source-maps bin/test.ts",
69
+ "lint": "eslint src tests --no-error-on-unmatched-pattern",
70
+ "lint:fix": "eslint src tests --fix --no-error-on-unmatched-pattern"
71
+ }
72
+ }