-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (71 loc) · 1.84 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
{
"name": "search-in-json",
"author": "Abdhesh Nayak",
"license": "MIT",
"version": "1.0.68",
"description": "",
"private": false,
"types": "./dist/@types/index.d.ts",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"sideEffects": false,
"exports": {
".": {
"import": {
"default": "./dist/index.mjs",
"types": "./dist/@types/index.d.ts"
},
"require": {
"default": "./dist/index.js",
"types": "./dist/@types/index.d.ts"
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/abdheshnayak/search-in-json.git"
},
"keywords": [
"search",
"json",
"fast",
"optimised",
"get-json-path"
],
"files": [
"dist",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && node build.js && npm run tsc",
"clean": "rimraf dist",
"dev": "esbuild src/test.ts --bundle --format=cjs --outfile=out/index.cjs && node out/index.cjs",
"tsc": "tsc --emitDeclarationOnly --outDir ./dist/@types"
},
"dependencies":{},
"peerDependencies":{},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"esbuild": "^0.19.2",
"eslint": "^8.47.0",
"eslint-config-airbnb": "19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-jsconfig": "^1.1.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prefer-arrow-functions": "^3.1.4",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.1",
"typescript": "^5.2.2"
}
}