hanspell 0.10.0 → 1.0.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.
- package/package.json +15 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hanspell",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "(주)다음과 네이버(주)의 온라인 서비스를 이용한 한글 맞춤법 검사기.",
|
|
5
5
|
"homepage": "https://github.com/9beach/hanspell",
|
|
6
6
|
"author": {
|
|
@@ -23,7 +23,20 @@
|
|
|
23
23
|
"scripts": {
|
|
24
24
|
"all": "npm run lint && npm test",
|
|
25
25
|
"test": "mocha && test/cli.test.sh",
|
|
26
|
-
"lint": "eslint ."
|
|
26
|
+
"lint": "eslint .",
|
|
27
|
+
"build": "pkg . --out-path bin"
|
|
28
|
+
},
|
|
29
|
+
"pkg": {
|
|
30
|
+
"scripts": [
|
|
31
|
+
"lib/**/*.js"
|
|
32
|
+
],
|
|
33
|
+
"targets": [
|
|
34
|
+
"node20-linux-x64",
|
|
35
|
+
"node20-macos-arm64",
|
|
36
|
+
"node20-macos-x64",
|
|
37
|
+
"node20-win-x64"
|
|
38
|
+
],
|
|
39
|
+
"outputPath": "bin"
|
|
27
40
|
},
|
|
28
41
|
"preferGlobal": true,
|
|
29
42
|
"bin": {
|