-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 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
{
"name": "jsonuri",
"version": "4.0.1",
"description": "Use URI path to get or set data",
"keywords": [
"array",
"data",
"data operator",
"javascript",
"json",
"json path",
"jsonuri",
"nodejs",
"object",
"path",
"uri",
"vue"
],
"homepage": "https://jsonuri.js.org",
"bugs": "https://github.com/aligay/jsonuri/issues",
"repository": {
"type": "git",
"url": "https://github.com/aligay/jsonuri.git"
},
"license": "MIT",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.umd.cjs"
},
"main": "./dist/index.umd.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"scripts": {
"build": "tsc && vite build && tsc",
"codecov": "codecov -t your_token_here",
"coverage": "vitest run --coverage --coverage.reporter=lcov",
"dev": "vitest -w --ui --no-open",
"lint": "prettier --write .",
"prepare": "husky",
"prepublishOnly": "pnpm run build",
"test": "pnpm run coverage",
"tsc": "tsc"
},
"devDependencies": {
"@types/serialize-javascript": "^5.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"husky": "^9.1.7",
"immer": "^10.1.1",
"prettier": "^3.6.2",
"prettier-plugin-organize-imports": "^4.2.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vitest": "^3.2.4"
}
}