-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.2 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
{
"name": "deep-flatten-type",
"private": false,
"version": "1.0.5",
"description": "Flattens deeply nested object types into a dot-separated union of keys, treating all optional keys as required. Ideal for working with deeply structured TypeScript types.",
"author": "Alireza Bahrani",
"license": "MIT",
"type": "module",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/AliReza99/ts-deep-flatten.git"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"lint:prettier": "prettier --check --cache ./src/**/*.{js,jsx,ts,tsx}",
"prettify": "prettier --write --cache ./src/**/*.{js,jsx,ts,tsx}",
"lint": "tsc --noEmit && eslint --cache --cache-location ./node_modules/.cache/eslint/ --quiet --ext .js,.jsx,.ts,.tsx,.mjs src",
"prebuild": "rimraf dist",
"build": "tsc",
"release": "npx release patch"
},
"dependencies": {
"utility-types": "^3.11.0"
},
"devDependencies": {
"@types/node": "^22.7.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.48.0",
"prettier": "^3.0.3",
"rimraf": "^6.0.1",
"typescript": "^5.6.2"
}
}