-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 979 Bytes
/
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
{
"name": "helper-methods-js",
"version": "1.0.2",
"repository": {
"type": "git",
"url": "https://github.com/samhirtarif/helper-methods-js.git"
},
"keywords": [
"helper",
"helper methods",
"deepcopy",
"deep copy",
"dedupe",
"deduplication",
"remove duplicates",
"async",
"indexes",
"indexesOf",
"trim",
"trim delimeters",
"trim start",
"trim end"
],
"files": [
"dist",
"README.md"
],
"main": "./dist/helper-methods-js.umd.js",
"module": "./dist/helper-methods-js.es.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/helper-methods-js.es.js",
"require": "./dist/helper-methods-js.umd.js"
}
},
"scripts": {
"test": "vitest run",
"build": "tsc && vite build",
"preview": "vite preview"
},
"devDependencies": {
"typescript": "^4.6.4",
"vite": "^3.2.3",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.25.1"
}
}