-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.44 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.44 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
{
"name": "mugunghwa",
"type": "module",
"version": "1.0.1",
"description": "Korean text encoding/decoding library using base-72 numeral system",
"source": "src/index.ts",
"exports": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.modern.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "microbundle",
"watch": "microbundle watch",
"test": "jest",
"encode": "node scripts/encode.cjs",
"decode": "node scripts/decode.cjs",
"random": "node scripts/random.cjs",
"validate": "node scripts/validate.cjs",
"generate-constants": "node scripts/generate-constants.cjs"
},
"keywords": [
"korean",
"encoding",
"base72",
"text",
"compression"
],
"author": "hmmhmmhm",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hmmhmmhm/node-packages.git",
"directory": "packages/mugunghwa"
},
"bugs": {
"url": "https://github.com/hmmhmmhm/node-packages/issues"
},
"homepage": "https://github.com/hmmhmmhm/node-packages/tree/main/packages/mugunghwa#readme",
"dependencies": {
"lz-string": "^1.5.0"
},
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^20.14.0",
"jest": "^29.7.0",
"microbundle": "^0.15.1",
"ts-jest": "^29.2.5",
"tsx": "^4.7.0",
"typescript": "^5.6.2"
}
}