-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "leavify",
"type": "module",
"version": "0.3.0",
"description": "Helper functions for manipulating and tracking changes to object leaf values",
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"./dist"
],
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"default": "./dist/index.js"
},
"./changes": {
"types": "./dist/src/changes/index.d.ts",
"default": "./dist/changes.js"
},
"./package.json": "./package.json"
},
"types": "./dist/src/index.d.ts",
"typesVersions": {
"*": {
".": [
"./dist/src/index.d.ts"
]
}
},
"dependencies": {
"@types/lodash": "^4.14.195",
"lodash": "^4.17.21"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@vitest/coverage-v8": "^1.1.3",
"eslint": "^8.56.0",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"tsd": "^0.30.4",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vite-plugin-dts": "^3.8.2",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^1.1.3"
},
"scripts": {
"dev": "npx tsx src/index.ts",
"test": "bash ./test.sh",
"check": "npm run test && npm run test -- --types && npm run test -- --package",
"coverage": "vitest --coverage",
"release": "standard-version",
"build": "vite build",
"lint": "eslint src/** utils/** __tests__/**",
"prepublishOnly": "npm run test && npm run build"
},
"author": "Davi Alexandre",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ddeltree/leavify.git"
},
"bugs": {
"url": "https://github.com/ddeltree/leavify/issues"
},
"homepage": "https://github.com/ddeltree/leavify#readme",
"keywords": [
"object",
"leaves",
"leaf",
"path",
"value",
"path-value",
"change",
"difference",
"tree"
]
}