-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) Β· 1.16 KB
/
package.json
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
{
"name": "ko-fuzzy",
"version": "1.0.0",
"description": "regex generator for korean auto complete and fuzzy search",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"engines": {
"node": ">= 4.2.1",
"npm": ">= 3"
},
"scripts": {
"build": "rm -rf ./dist && tsc",
"build:watch": "rm -rf ./dist && tsc -w",
"start:dev": "nodemon --exec ts-node ./example/index.ts",
"build:pkg": "rm -rf ./dist && tsup src/index.ts --format cjs,esm --dts --clean",
"format": "prettier --write \"src/**/*.ts\""
},
"author": "darrenkwon <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/node": "^17.0.4",
"nodemon": "^2.0.7",
"prettier": "^2.3.0",
"ts-node": "^10.0.0",
"tsup": "^5.11.9",
"typescript": "^4.3.2"
},
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/DarrenKwonDev/autoFuzzy"
},
"bugs": {
"url": "https://github.com/DarrenKwonDev/auto/issues"
},
"files": [
"dist"
]
}