-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.96 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.96 KB
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": "json-cursor-path",
"version": "1.1.0",
"repository": {
"type": "git",
"url": "https://github.com/7PH/json-cursor-path.git"
},
"type": "module",
"exports": {
"import": "./build/json-cursor-path.js",
"require": "./build/json-cursor-path.cjs"
},
"description": "Get the JSONPath at any cursor position in JSON text",
"main": "build/json-cursor-path.js",
"types": "build/json-cursor-path.d.ts",
"files": [
"build/**/*",
"dist/*.js"
],
"scripts": {
"dev": "vite",
"build": "tsc && rollup -c",
"build:docs": "vite build --emptyOutDir",
"size": "size-limit",
"test": "jest"
},
"keywords": [
"json",
"jsonpath",
"cursor",
"editor",
"autocomplete",
"json-cursor",
"json-parser",
"json-path",
"parser"
],
"homepage": "https://github.com/7PH/json-cursor-path",
"bugs": "https://github.com/7PH/json-cursor-path/issues",
"author": "7PH <b.raymond@protonmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/preset-env": "^7.24.7",
"@babel/preset-typescript": "^7.24.7",
"@highlightjs/vue-plugin": "^2.1.0",
"@size-limit/preset-small-lib": "^11.1.4",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"@vitejs/plugin-vue": "^5.0.5",
"autoprefixer": "^10.4.19",
"babel-jest": "^29.7.0",
"highlight.js": "^11.9.0",
"jest": "^29.7.0",
"postcss": "^8.4.38",
"prettier": "^3.3.2",
"rollup": "^4.18.0",
"rollup-plugin-esbuild": "^6.1.1",
"size-limit": "^11.1.4",
"tailwindcss": "^3.4.4",
"ts-jest": "^29.1.5",
"typescript": "^5.5.3",
"vite": "^5.3.1",
"vue": "^3.4.29"
},
"size-limit": [
{
"limit": "1099 B",
"path": "dist/*.min.js"
}
]
}