-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.49 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@ankasru/utils-ts",
"version": "1.1.16",
"description": "utils for ts and js",
"main": "./dist/index.umd.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.js",
"default": "./dist/index.umd.js"
}
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "tsc && eslint . --ext ts && vite build ",
"test": "vitest run",
"test-coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ankasru/utils-ts"
},
"keywords": [
"typescript",
"javascript",
"utils",
"helpers",
"async",
"debounce",
"throttle",
"isEmpty",
"services"
],
"author": "ryinner",
"license": "MIT",
"bugs": {
"url": "https://github.com/ankasru/utils-ts/issues"
},
"homepage": "https://github.com/ankasru/utils-ts#readme",
"devDependencies": {
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"happy-dom": "^14.3.8",
"typescript": "^5.4.3",
"vite": "^5.2.6",
"vite-plugin-dts": "^3.7.3",
"vitest": "^1.4.0"
}
}