-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.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
{
"name": "e2sm",
"version": "0.6.3",
"license": "MIT",
"author": "lemtoc",
"repository": {
"type": "git",
"url": "https://github.com/lemtoc/e2sm.git"
},
"bin": {
"e2sm": "dist/index.mjs"
},
"files": [
"assets",
"dist"
],
"type": "module",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsdown",
"prepublishOnly": "bun run build",
"prepare": "lefthook install",
"preinstall": "npx only-allow bun",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"lint": "oxlint",
"lint-types": "oxlint --type-aware",
"check": "oxfmt && oxlint --type-aware",
"typecheck": "tsc --noEmit",
"test": "bun test",
"changeset": "changeset",
"version": "changeset version",
"release": "bun run build && changeset publish"
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@clack/prompts": "^0.11.0",
"@gunshi/docs": "0.27.5",
"@types/bun": "latest",
"gunshi": "0.27.5",
"jsonc-parser": "^3.3.1",
"kleur": "^4.1.5",
"lefthook": "^2.0.15",
"oxfmt": "^0.26.0",
"oxlint": "^1.41.0",
"oxlint-tsgolint": "^0.11.1",
"tsdown": "^0.20.0-beta.4"
},
"peerDependencies": {
"typescript": "^5"
}
}