-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·89 lines (89 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
executable file
·89 lines (89 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"type": "module",
"name": "miijs",
"description": "The most complete and easy to use Mii library available.",
"version": "3.1.0",
"main": "index.js",
"browser": "dist/miijs.browser.js",
"module": "dist/miijs.browser.esm.js",
"exports": {
".": {
"node": {
"import": "./index.js",
"require": "./dist/miijs.cjs"
},
"browser": "./dist/miijs.browser.js",
"import": "./dist/miijs.browser.esm.js",
"require": "./dist/miijs.cjs",
"default": "./index.js"
},
"./browser": {
"import": "./dist/miijs.browser.esm.js",
"default": "./dist/miijs.browser.js"
}
},
"scripts": {
"test": "node --test spec/tl-clothing-selectors.test.mjs spec/glasses-render-normalization.test.mjs",
"build": "node build.cjs",
"serve": "node build.cjs --serve",
"prepublishOnly": "npm run build"
},
"bugs": {
"url": "https://github.com/Stewared/MiiJS/issues"
},
"homepage": "https://github.com/Stewared/MiiJS#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Stewared/MiiJS.git"
},
"keywords": [
"Mii",
"QR",
"DS",
"Wii",
"3DS",
"Wii U",
"Amiibo",
"Switch 2",
"Tomodachi Life",
"Miitomo",
"Encrypt",
"Decrypt",
"Render",
"Convert",
"Remote",
"Special"
],
"author": "Stewared",
"license": "ISC",
"dependencies": {
"@noble/hashes": "^1.8.0",
"aes-js": "^3.1.2",
"assert": "^2.1.0",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"canvas": "^3.2.1",
"esbuild": "^0.27.3",
"events": "^3.3.0",
"fetch": "^1.1.0",
"is-jpg": "^3.0.0",
"is-png": "^3.0.1",
"is-valid-path": "^0.1.1",
"jpeg-js": "^0.4.4",
"jsdom": "^26.1.0",
"jsqr": "^1.4.0",
"lodash": "^4.17.23",
"module": "^2.0.0",
"path-browserify": "^1.0.1",
"pngjs": "^7.0.0",
"process": "^0.11.10",
"qr-code-styling": "^1.9.2",
"randombytes": "^2.1.0",
"sharp": "^0.34.4",
"stream-browserify": "^3.0.0",
"three": "^0.182.0",
"url": "^0.11.4",
"util": "^0.12.5",
"webgpu": "^0.3.8"
}
}