-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.98 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 1.98 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@cldmv/prettier-plugin-jsonv",
"version": "1.0.3",
"description": "Prettier plugin for @cldmv/jsonv files",
"type": "module",
"main": "./dist/index.mjs",
"exports": {
".": {
"types": "./types/dist/index.d.mts",
"import": "./dist/index.mjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "npm run build:js && npm run build:types && npm run fix-types",
"build:ci": "npm run build",
"build:js": "node scripts/build.mjs",
"build:types": "tsc -p .configs/tsconfig.types.jsonc",
"fix-types": "node scripts/fix-types.mjs",
"test": "node tests/run-vitest.mjs",
"test:watch": "vitest --config .configs/vitest.config.mjs",
"coverage": "node tests/run-vitest.mjs --coverage-quiet",
"ci:coverage": "npm run coverage"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist/**",
"types/dist/",
"README.md",
"LICENSE"
],
"peerDependencies": {
"@cldmv/jsonv": "^1.0.0",
"prettier": "^3.0.0"
},
"devDependencies": {
"@cldmv/jsonv": "^1.0.0",
"@cldmv/vitest-runner": "^1.2.0",
"@types/prettier": "^2.7.3",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.27.0",
"prettier": "^3.8.3",
"typescript": "^6.0.3",
"vitest": "^4.1.10"
},
"keywords": [
"prettier",
"jsonv",
"json5",
"formatter",
"code-style",
"formatting",
"es2015",
"es2020",
"es2021",
"bigint",
"numeric-separators"
],
"author": {
"name": "Shinrai",
"company": "CLDMV",
"email": "git+npm@cldmv.net",
"url": "https://cldmv.net"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/CLDMV/jsonv-prettier-plugin-jsonv.git"
},
"bugs": {
"url": "https://github.com/CLDMV/jsonv-prettier-plugin-jsonv/issues"
},
"homepage": "https://github.com/CLDMV/jsonv-prettier-plugin-jsonv#readme",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/shinrai"
},
"contributors": [
{
"name": "CLDMV",
"url": "https://github.com/CLDMV"
}
],
"types": "./types/src/index.d.mts"
}