-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.31 KB
/
Copy pathpackage.json
File metadata and controls
124 lines (124 loc) · 3.31 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"_wiswa": {
"commandLine": "wiswa -d",
"lastRun": "2026-06-12T03:36:43Z",
"version": "253303c"
},
"contributors": ["Andrew Udvare <audvare@gmail.com>"],
"cspell": {
"cache": {
"useCache": true
},
"dictionaryDefinitions": [
{
"name": "main",
"path": ".vscode/dictionary.txt"
}
],
"enableFileTypes": {
"*": true
},
"enableGlobDot": true,
"files": ["**"],
"ignorePaths": [
"*.1",
"*.har",
"*.lock",
".git/**",
".yarn/**/*.cjs",
".vscode/extensions.json",
"dist/**",
"man/**",
"*.patch",
".docs/*.tag.xml",
".docs/*.tags",
"tools/goodjbt.json",
"tools/goodrb.json"
],
"language": "en-GB",
"languageSettings": [
{
"dictionaries": ["main"],
"languageId": "*"
}
],
"useGitignore": true
},
"description": "Tools and a C/C++ library to manipulate BFCodec-encrypted content.",
"devDependencies": {
"@prettier/plugin-xml": "^3.4.2",
"cspell": "^10.0.1",
"markdownlint-cli2": "^0.23.2",
"prettier": "^3.9.6",
"prettier-plugin-ini": "^1.3.0",
"prettier-plugin-sort-json": "^4.2.0",
"prettier-plugin-toml": "^2.0.6"
},
"files": ["LICENSE.txt", "README.md"],
"homepage": "https://tatsh.github.io/bfcodec/",
"keywords": ["android", "ios", "konami", "jubeat", "jukebeat", "reflec beat"],
"license": "MIT",
"markdownlint-cli2": {
"config": {
"MD024": {
"siblings_only": true
},
"MD033": {
"allowed_elements": ["kbd"]
},
"default": true,
"line-length": {
"code_blocks": false,
"line_length": 100,
"tables": false
}
},
"gitignore": true,
"globs": ["**/*.md", "**/*.mdc"],
"noBanner": true,
"showFound": true
},
"name": "bfcodec",
"packageManager": "yarn@4.16.0",
"prettier": {
"endOfLine": "lf",
"iniSpaceAroundEquals": true,
"jsonRecursiveSort": true,
"overrides": [
{
"files": ["*.json.dist", "package.json"],
"options": {
"parser": "json"
}
},
{
"files": [".clang-format"],
"options": {
"parser": "yaml"
}
}
],
"plugins": [
"@prettier/plugin-xml",
"prettier-plugin-ini",
"prettier-plugin-sort-json",
"prettier-plugin-toml"
],
"printWidth": 100,
"reorderKeys": true,
"singleQuote": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tatsh/bfcodec.git"
},
"scripts": {
"build": "cmake --preset=default -DBUILD_DOCS=ON && cmake --build build",
"check-formatting": "clang-format --dry-run include/*.h src/*.c* tools/*.c* tools/*.h && prettier --check . && markdownlint-cli2 --config package.json --configPointer /markdownlint-cli2",
"check-spelling": "cspell --no-progress .",
"dict:update": "rm -f .vscode/dictionary.txt && cspell lint --no-progress --no-summary --unique --words-only | tr '[:upper:]' '[:lower:]' | sort -u > .vscode/dictionary.txt",
"format": "clang-format -i include/*.h src/*.c* tools/*.c* tools/*.h && prettier --write . && markdownlint-cli2 --config package.json --configPointer /markdownlint-cli2 --fix",
"qa": "yarn check-spelling && yarn check-formatting"
},
"version": "0.0.6"
}