-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.19 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
{
"name": "@sovgut/allocate",
"type": "module",
"version": "3.0.1",
"author": {
"name": "Serhii Sovhut",
"url": "https://github.com/Sovgut"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Sovgut/allocate.git"
},
"keywords": [
"key-mapping",
"object-transformation",
"array-transformation",
"reshape-data",
"javascript",
"typescript",
"data-manipulation",
"object-manipulation",
"object-keys",
"key-allocation",
"key-replacement"
],
"exports": {
".": {
"import": "./dist/main.js"
}
},
"main": "./dist/main.js",
"module": "./dist/main.js",
"types": "./dist/main.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run",
"build": "tsc && vite build"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.1",
"@types/node": "^20.16.1",
"eslint": "^8.57.0",
"lint-staged": "^15.2.9",
"simple-git-hooks": "^2.11.1",
"typescript": "^5.5.4",
"vite": "^5.4.2",
"vite-plugin-dts": "^4.0.3",
"vitest": "^2.0.5"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}