-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "ms-kr",
"version": "0.0.2",
"description": "Korean millisecond conversion utility",
"repository": "zih0/ms-kr",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"sideEffects": false,
"license": "MIT",
"engines": {
"node": ">=14.18"
},
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"build": "tsup src/index.ts --format cjs,esm --dts",
"prepublishOnly": "npm run build",
"release": "pnpm run prepublishOnly && changeset publish",
"eslint": "eslint --max-warnings=0 .",
"type-check": "tsc --noEmit"
},
"devDependencies": {
"@changesets/cli": "2.26.2",
"@typescript-eslint/eslint-plugin": "6.1.0",
"@typescript-eslint/parser": "6.1.0",
"eslint": "8.12.0",
"husky": "7.0.2",
"prettier": "2.6.2",
"tsup": "7.1.0",
"typescript": "4.6.3",
"vitest": "0.33.0"
}
}