-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.01 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
{
"name": "assert-util-types",
"version": "0.0.8",
"description": "daily work would be much easier if there were utility assert functions",
"scripts": {
"dev": "vite",
"test": "vitest",
"format": "prettier --check . ",
"lint": "eslint --fix src/**/*.ts",
"build": "vite build"
},
"files": [
"/dist"
],
"exports": {
".": {
"import": "./dist/index.umd.js"
}
},
"main": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"keywords": [
"typescript",
"util"
],
"repository": {
"type": "git",
"url": "https://github.com/knj-labo/assert-util-type"
},
"author": "jp-knj",
"license": "MIT",
"devDependencies": {
"@types/node": "18.7.16",
"@typescript-eslint/eslint-plugin": "5.36.2",
"@typescript-eslint/parser": "5.36.2",
"c8": "^7.12.0",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"prettier": "2.7.1",
"typescript": "4.8.3",
"vite": "3.1.0",
"vite-plugin-dts": "1.4.1",
"vitest": "0.23.1"
}
}