-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
{
"name": "@busymango/is-esm",
"version": "0.2.3",
"description": "type narrowing for typescript",
"type": "module",
"files": [
"dist",
"index.d.ts",
"src/*.d.ts"
],
"types": "./index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
"types": "./index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"scripts": {
"dev": "vite",
"test": "vitest",
"build": "tsc && vite build",
"coverage": "vitest run --coverage",
"eslint": "eslint --cache --fix --ext .ts,.tsx ./",
"publish:pre": "pnpm build && pnpm coverage"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@vitest/coverage-v8": "^1.6.0",
"eslint": "8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unicorn": "^52.0.0",
"eslint-plugin-unused-imports": "^3.1.0",
"happy-dom": "^14.12.0",
"tslib": "^2.5.0",
"typescript": "^5.4.5",
"vite": "^5.3.1",
"vitest": "^1.6.0"
}
}