-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.13 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.13 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
{
"name": "@beequeue/gmd",
"description": "A library for parsing and serializing GMD files for the MT Framework engine.",
"type": "module",
"version": "0.2.0",
"author": "BeeeQueue <adam@haglund.dev>",
"repository": {
"type": "git",
"url": "https://github.com/beeequeue/gmd.git"
},
"license": "MIT",
"packageManager": "pnpm@10.10.0",
"engines": {
"node": ">=20"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,json5,yaml,yml,css,scss,md}": [
"prettier --write"
]
},
"files": [
"dist",
"CHANGELOG.md"
],
"bin": {
"gmd": "./dist/cli/index.js"
},
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"scripts": {
"cli": "node --experimental-strip-types src/cli/index.ts",
"build": "tsup",
"lint": "eslint src",
"test": "vitest",
"typecheck": "tsc --noEmit",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@antfu/eslint-config": "5.4.1",
"@bomb.sh/args": "0.3.1",
"@changesets/changelog-github": "0.5.1",
"@changesets/cli": "2.29.2",
"@tsconfig/node22": "22.0.1",
"@tsconfig/strictest": "2.0.5",
"@types/cli-progress": "3.11.6",
"@types/is-glob": "4.0.4",
"@types/node": "22.15.3",
"@types/picomatch": "4.0.0",
"binary-util": "1.1.1",
"cli-progress": "3.12.0",
"dotenv": "16.5.0",
"eslint": "9.39.1",
"fdir": "6.4.4",
"is-glob": "4.0.3",
"lint-staged": "16.2.7",
"picomatch": "4.0.2",
"prettier": "3.5.3",
"publint": "0.3.15",
"simple-git-hooks": "2.13.0",
"tinyrainbow": "2.0.0",
"tsup": "8.4.0",
"typescript": "5.8.3",
"vitest": "3.1.2"
},
"pnpm": {
"overrides": {
"@eslint/markdown": "-",
"@stylistic/eslint-plugin": "-",
"eslint-plugin-jsonc": "-",
"eslint-plugin-toml": "-",
"eslint-plugin-vue": "-",
"eslint-processor-vue-blocks": "-",
"jsonc-eslint-parser": "-",
"toml-eslint-parser": "-",
"is-core-module": "npm:@nolyfill/is-core-module@^1",
"safer-buffer": "npm:@nolyfill/safer-buffer@^1"
}
}
}