-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 KB
/
package.json
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
{
"name": "gungi.js",
"version": "3.0.4",
"type": "module",
"description": "library which contains all the necessary logic for the strategy game from the HUNTER×HUNTER manga",
"main": "lib/gungi.js",
"types": "lib/gungi.d.ts",
"homepage": "https://github.com/jwyce/gungi.js#readme",
"keywords": [
"gungi"
],
"repository": {
"type": "git",
"url": "git+https://github.com/jwyce/gungi.js.git"
},
"bugs": {
"url": "https://github.com/jwyce/gungi.js/issues"
},
"author": "Jared Wyce",
"license": "MIT",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"package.json",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "tsup --watch",
"build": "tsup",
"start": "node dist/index.js",
"typecheck": "tsc --noEmit",
"check": "pnpm typecheck && pnpm format:check ",
"format:check": "prettier --check \"**/*.{ts,tsx}\" --cache",
"format": "prettier --list-different --write \"**/*.{ts,tsx}\" --cache",
"release": "changeset version",
"pub:beta": "pnpm build && pnpm publish --no-git-checks --access public --tag beta",
"pub:next": "pnpm build && pnpm publish --no-git-checks --access public --tag next",
"pub:release": "pnpm build && pnpm publish --access public",
"test": "vitest run"
},
"dependencies": {
"picocolors": "^1.1.1"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.11",
"@ianvs/prettier-plugin-sort-imports": "^4.4.0",
"@types/node": "^22.10.5",
"prettier": "^3.4.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"packageManager": "[email protected]"
}