@figurosity/consumer-pose-generator 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.
@@ -0,0 +1,63 @@
1
+ const t = {
2
+ pg: {
3
+ figurosity: "Figurosity",
4
+ buttons: {
5
+ advanced: {
6
+ title: "Advanced"
7
+ },
8
+ cancel: {
9
+ title: "Cancel"
10
+ },
11
+ done: {
12
+ title: "Done"
13
+ },
14
+ reset: {
15
+ title: "Reset"
16
+ },
17
+ exit: {
18
+ title: "Exit"
19
+ },
20
+ start: {
21
+ title: "Start"
22
+ },
23
+ view360: {
24
+ title: "View in 360°"
25
+ }
26
+ },
27
+ tools: {
28
+ adjustment: "Image adjustment",
29
+ angle: "Camera angle",
30
+ position: "Camera orientation",
31
+ duration: "Duration",
32
+ effects: "Effects",
33
+ gender: "Parts and bits",
34
+ grid: "Grid overlay",
35
+ light: "Light direction",
36
+ skins: "Skins",
37
+ visibility: {
38
+ title: "Controls visibility",
39
+ nextBackShow: "Show next/back buttons",
40
+ nextBackHide: "Hide next/back buttons",
41
+ timerShow: "Show timer",
42
+ timerHide: "Hide timer"
43
+ }
44
+ },
45
+ drawer: {
46
+ title: "Pose generator"
47
+ },
48
+ possibilities: {
49
+ title: "Possibilities"
50
+ },
51
+ overview: {
52
+ title: "Random pose generator",
53
+ heading: "Improve your figure drawing skills with timed gesture drawing.",
54
+ blurb: "Practicing something specific?<br />We’ve got you covered.",
55
+ startLabel: "Start!",
56
+ resetLabel: "Reset",
57
+ settingsLabel: "Customize Settings"
58
+ }
59
+ }
60
+ };
61
+ export {
62
+ t as default
63
+ };
package/package.json ADDED
@@ -0,0 +1,71 @@
1
+ {
2
+ "name": "@figurosity/consumer-pose-generator",
3
+ "version": "0.1.0",
4
+ "description": "Timed figure-drawing pose generator for the Figurosity consumer frontend",
5
+ "type": "module",
6
+ "main": "./dist/consumer-pose-generator.js",
7
+ "module": "./dist/consumer-pose-generator.js",
8
+ "exports": {
9
+ ".": {
10
+ "import": "./dist/consumer-pose-generator.js"
11
+ },
12
+ "./style.css": "./dist/consumer-pose-generator.css"
13
+ },
14
+ "files": [
15
+ "dist"
16
+ ],
17
+ "scripts": {
18
+ "build": "vite build",
19
+ "dev": "vite --config vite.dev.config.js",
20
+ "test": "vitest run --passWithNoTests",
21
+ "test:watch": "vitest",
22
+ "lint": "eslint src/",
23
+ "format": "prettier --write \"src/**/*.{js,vue}\"",
24
+ "format:check": "prettier --check \"src/**/*.{js,vue}\"",
25
+ "patch": "npm version patch --no-git-tag-version"
26
+ },
27
+ "repository": {
28
+ "type": "git",
29
+ "url": "git+https://github.com/figurosity/consumer-pose-generator.git"
30
+ },
31
+ "author": "",
32
+ "license": "UNLICENSED",
33
+ "peerDependencies": {
34
+ "@figurosity/consumer-controls": "^0.2.0",
35
+ "@figurosity/icons": "^1.0.0",
36
+ "@figurosity/toolbox": "^0.2.1",
37
+ "lodash-es": "^4.17.0",
38
+ "lodash.debounce": "^4.0.8",
39
+ "pinia": "^3.0.1",
40
+ "quasar": "^2.17.6",
41
+ "vue": "^3.5.12",
42
+ "vue-router": "^4.0.0"
43
+ },
44
+ "devDependencies": {
45
+ "@eslint/js": "^9.0.0",
46
+ "@figurosity/consumer-controls": "^0.2.0",
47
+ "@figurosity/icons": "^1.0.0",
48
+ "@figurosity/toolbox": "^0.2.1",
49
+ "@quasar/extras": "^1.16.0",
50
+ "@quasar/vite-plugin": "^1.7.0",
51
+ "@vitejs/plugin-vue": "^5.0.0",
52
+ "@vue/eslint-config-prettier": "^10.0.0",
53
+ "@vue/test-utils": "^2.4.6",
54
+ "eslint": "^9.0.0",
55
+ "eslint-plugin-import": "^2.32.0",
56
+ "eslint-plugin-vue": "^9.0.0",
57
+ "globals": "^16.0.0",
58
+ "happy-dom": "^20.8.9",
59
+ "lodash-es": "^4.17.0",
60
+ "lodash.debounce": "^4.0.8",
61
+ "mitt": "^3.0.1",
62
+ "pinia": "^3.0.1",
63
+ "prettier": "^3.0.0",
64
+ "quasar": "^2.17.6",
65
+ "sass": "^1.99.0",
66
+ "vite": "^6.0.0",
67
+ "vitest": "^3.0.0",
68
+ "vue": "^3.5.0",
69
+ "vue-router": "^4.0.0"
70
+ }
71
+ }