-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.31 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.31 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
{
"name": "charinfo-ex",
"version": "0.0.5",
"description": "Package for reading and writing Tomodachi Life character data",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.mjs",
"types": "./lib/types/index.d.ts",
"files": [
"lib/**",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"exports": {
".": {
"types": "./lib/types/index.d.ts",
"import": "./lib/esm/index.mjs",
"require": "./lib/cjs/index.js"
},
"./CharInfoEx": {
"types": "./lib/types/CharInfoEx.d.ts",
"import": "./lib/esm/CharInfoEx.mjs",
"require": "./lib/cjs/CharInfoEx.js"
},
"./CharInfoOffset": {
"types": "./lib/types/CharInfoOffset.d.ts",
"import": "./lib/esm/CharInfoOffset.mjs",
"require": "./lib/cjs/CharInfoOffset.js"
},
"./ColorIndex": {
"types": "./lib/types/ColorIndex.d.ts",
"import": "./lib/esm/ColorIndex.mjs",
"require": "./lib/cjs/ColorIndex.js"
},
"./ColorOrder": {
"types": "./lib/types/ColorOrder.d.ts",
"import": "./lib/esm/ColorOrder.mjs",
"require": "./lib/cjs/ColorOrder.js"
},
"./Helpers": {
"types": "./lib/types/Helpers.d.ts",
"import": "./lib/esm/Helpers.mjs",
"require": "./lib/cjs/Helpers.js"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "npm run build:esm && npm run build:cjs && npm run build:types",
"build:esm": "tsup src/*.ts --format esm --outDir lib/esm --clean --splitting false",
"build:cjs": "tsup src/*.ts --format cjs --outDir lib/cjs --clean",
"build:types": "tsc --emitDeclarationOnly --declaration --declarationMap false --outDir lib/types --rootDir src",
"test": "npm run test-read && npm run test-json",
"test-read": "tsx ./test/testread.ts ./test/mii.sav ./test/mii.json",
"test-sharemii": "tsx ./test/testsharemii.ts ./test/mii.ltd",
"test-json": "tsx ./test/testwrite.ts ./test/mii.json"
},
"author": "McSpazzy",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.4.5",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.1.6"
},
"repository": {
"type": "git",
"url": "git+https://github.com/McSpazzy/charinfo-ex.git"
},
"homepage": "https://github.com/McSpazzy/charinfo-ex",
"bugs": {
"url": "https://github.com/McSpazzy/charinfo-ex/issues"
}
}