loredata 0.3.0 → 0.4.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 (48) hide show
  1. package/README.md +97 -59
  2. package/data/avengers/characters.json +304 -177
  3. package/data/better-call-saul/characters.json +267 -155
  4. package/data/big-bang-theory/characters.json +197 -120
  5. package/data/big-bang-theory/meta.json +1 -1
  6. package/data/breaking-bad/characters.json +249 -155
  7. package/data/fast-and-furious/addresses.json +1 -2
  8. package/data/fast-and-furious/characters.json +226 -140
  9. package/data/friends/characters.json +402 -291
  10. package/data/friends/meta.json +1 -1
  11. package/data/game-of-thrones/addresses.json +6 -22
  12. package/data/game-of-thrones/characters.json +507 -314
  13. package/data/guardians-of-the-galaxy/characters.json +225 -123
  14. package/data/harry-potter/addresses.json +6 -11
  15. package/data/harry-potter/characters.json +239 -154
  16. package/data/house-md/characters.json +164 -43
  17. package/data/lost/characters.json +420 -311
  18. package/data/matrix/characters.json +123 -24
  19. package/data/matrix/meta.json +1 -1
  20. package/data/peaky-blinders/characters.json +180 -37
  21. package/data/peaky-blinders/meta.json +1 -1
  22. package/data/prison-break/characters.json +91 -19
  23. package/data/sherlock/characters.json +369 -272
  24. package/data/simpsons/characters.json +205 -41
  25. package/data/sopranos/characters.json +291 -183
  26. package/data/south-park/characters.json +371 -229
  27. package/data/spider-man/characters.json +124 -39
  28. package/data/spider-man/meta.json +6 -6
  29. package/data/star-wars/characters.json +129 -28
  30. package/data/stranger-things/addresses.json +31 -0
  31. package/data/stranger-things/characters.json +226 -0
  32. package/data/stranger-things/meta.json +13 -0
  33. package/data/supernatural/characters.json +96 -19
  34. package/data/supernatural/meta.json +6 -6
  35. package/data/the-crown/addresses.json +27 -0
  36. package/data/the-crown/characters.json +275 -0
  37. package/data/the-crown/meta.json +13 -0
  38. package/data/the-office/characters.json +478 -298
  39. package/data/the-walking-dead/characters.json +93 -21
  40. package/data/the-witcher/addresses.json +22 -0
  41. package/data/the-witcher/characters.json +272 -0
  42. package/data/the-witcher/meta.json +13 -0
  43. package/data/vikings/addresses.json +26 -0
  44. package/data/vikings/characters.json +240 -0
  45. package/data/vikings/meta.json +13 -0
  46. package/data/westworld/characters.json +71 -18
  47. package/data/x-men/characters.json +108 -24
  48. package/package.json +85 -84
package/package.json CHANGED
@@ -1,85 +1,86 @@
1
1
  {
2
- "name": "loredata",
3
- "version": "0.3.0",
4
- "description": "Generate personas from pop culture universes. Every field belongs to the same fictional world.",
5
- "keywords": [
6
- "fake-data",
7
- "test-data",
8
- "faker",
9
- "mock-data",
10
- "seed",
11
- "persona",
12
- "generator",
13
- "fixtures",
14
- "pop-culture",
15
- "fictional",
16
- "characters",
17
- "cli"
18
- ],
19
- "homepage": "https://loredata.orchidfiles.com",
20
- "repository": {
21
- "type": "git",
22
- "url": "https://github.com/orchidfiles/loredata"
23
- },
24
- "bugs": {
25
- "url": "https://github.com/orchidfiles/loredata/issues"
26
- },
27
- "license": "MIT",
28
- "author": {
29
- "name": "orchidfiles",
30
- "email": "orchid@orchidfiles.com",
31
- "url": "https://orchidfiles.com"
32
- },
33
- "type": "module",
34
- "exports": {
35
- ".": {
36
- "types": "./dist/index.d.ts",
37
- "import": "./dist/index.js",
38
- "require": "./dist/index.cjs"
39
- },
40
- "./browser": {
41
- "types": "./dist/browser.d.ts",
42
- "import": "./dist/browser.js",
43
- "require": "./dist/browser.cjs"
44
- },
45
- "./data/*": "./data/*",
46
- "./package.json": "./package.json"
47
- },
48
- "bin": {
49
- "loredata": "./dist/cli/cli.js"
50
- },
51
- "files": [
52
- "dist",
53
- "data"
54
- ],
55
- "engines": {
56
- "node": ">=20.0.0"
57
- },
58
- "scripts": {
59
- "build": "tsup",
60
- "build:watch": "tsup --watch",
61
- "validate": "node --import tsx/esm scripts/validate-universe.ts",
62
- "fetch:tmdb": "node --env-file=.env --import tsx/esm scripts/fetch-tmdb.ts",
63
- "patch:chars": "node --import tsx/esm scripts/patch.ts chars",
64
- "patch:meta": "node --import tsx/esm scripts/patch.ts meta",
65
- "patch:delete": "node --import tsx/esm scripts/patch.ts delete-key",
66
- "gen:colors": "node --import tsx/esm scripts/generate-colors.ts",
67
- "lint": "eslint .",
68
- "lint:fix": "eslint . --fix",
69
- "release": "npm publish --access public"
70
- },
71
- "dependencies": {
72
- "commander": "~14.0.3"
73
- },
74
- "devDependencies": {
75
- "@loredata/dev-kit": "workspace:*",
76
- "@twemoji/svg": "^15.0.0",
77
- "@types/node": "~22.13.14",
78
- "eslint": "~9.39.4",
79
- "get-svg-colors": "^2.0.1",
80
- "tsup": "~8.4.0",
81
- "tsx": "~4.21.0",
82
- "typescript": "~5.8.2",
83
- "vite": "~6.2.7"
84
- }
85
- }
2
+ "name": "loredata",
3
+ "version": "0.4.1",
4
+ "description": "Generate personas from pop culture universes. Every field belongs to the same fictional world.",
5
+ "keywords": [
6
+ "fake-data",
7
+ "test-data",
8
+ "faker",
9
+ "mock-data",
10
+ "seed",
11
+ "persona",
12
+ "generator",
13
+ "fixtures",
14
+ "pop-culture",
15
+ "fictional",
16
+ "characters",
17
+ "cli"
18
+ ],
19
+ "homepage": "https://loredata.orchidfiles.com",
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "https://github.com/orchidfiles/loredata"
23
+ },
24
+ "bugs": {
25
+ "url": "https://github.com/orchidfiles/loredata/issues"
26
+ },
27
+ "license": "MIT",
28
+ "author": {
29
+ "name": "orchidfiles",
30
+ "email": "orchid@orchidfiles.com",
31
+ "url": "https://orchidfiles.com"
32
+ },
33
+ "type": "module",
34
+ "exports": {
35
+ ".": {
36
+ "types": "./dist/index.d.ts",
37
+ "import": "./dist/index.js",
38
+ "require": "./dist/index.cjs"
39
+ },
40
+ "./browser": {
41
+ "types": "./dist/browser.d.ts",
42
+ "import": "./dist/browser.js",
43
+ "require": "./dist/browser.cjs"
44
+ },
45
+ "./data/*": "./data/*",
46
+ "./package.json": "./package.json"
47
+ },
48
+ "bin": {
49
+ "loredata": "./dist/cli/cli.js"
50
+ },
51
+ "files": [
52
+ "dist",
53
+ "data"
54
+ ],
55
+ "engines": {
56
+ "node": ">=20.0.0"
57
+ },
58
+ "scripts": {
59
+ "build": "tsup",
60
+ "build:watch": "tsup --watch",
61
+ "validate": "node --import tsx/esm scripts/validate-universe.ts",
62
+ "check:quotes": "node --import tsx/esm scripts/check-quotes/run.ts",
63
+ "fetch:tmdb": "node --env-file=.env --import tsx/esm scripts/fetch-tmdb.ts",
64
+ "patch:chars": "node --import tsx/esm scripts/patch.ts chars",
65
+ "patch:meta": "node --import tsx/esm scripts/patch.ts meta",
66
+ "patch:delete": "node --import tsx/esm scripts/patch.ts delete-key",
67
+ "gen:colors": "node --import tsx/esm scripts/generate-colors.ts",
68
+ "lint": "eslint .",
69
+ "lint:fix": "eslint . --fix",
70
+ "release": "npm publish --access public"
71
+ },
72
+ "dependencies": {
73
+ "commander": "~14.0.3"
74
+ },
75
+ "devDependencies": {
76
+ "@loredata/dev-kit": "workspace:*",
77
+ "@twemoji/svg": "^15.0.0",
78
+ "@types/node": "~22.13.14",
79
+ "eslint": "~9.39.4",
80
+ "get-svg-colors": "^2.0.1",
81
+ "tsup": "~8.4.0",
82
+ "tsx": "~4.21.0",
83
+ "typescript": "~5.8.2",
84
+ "vite": "~6.2.7"
85
+ }
86
+ }