-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.36 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.36 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
{
"name": "@dnd-mapp/shared-utils",
"description": "A pure TypeScript shared utility suite for D&D applications, featuring dice rolling engines, coordinate systems, and consistent business logic helpers.",
"version": "2.0.1",
"license": "MIT",
"author": "NoNamer777",
"homepage": "https://github.com/dnd-mapp/shared-utils",
"keywords": [
"typescript",
"shared-utils",
"esm"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dnd-mapp/shared-utils.git"
},
"bugs": {
"url": "https://github.com/dnd-mapp/shared-utils/issues"
},
"sideEffects": false,
"type": "module",
"types": "./dist/shared-utils/index.d.ts",
"module": "./dist/shared-utils/index.js",
"main": "./dist/shared-utils/index.cjs",
"exports": {
".": {
"types": "./dist/shared-utils/index.d.ts",
"import": "./dist/shared-utils/index.js",
"require": "./dist/shared-utils/index.cjs"
}
},
"publishConfig": {
"access": "public",
"directory": "dist/shared-utils"
},
"packageManager": "pnpm@10.33.0",
"engines": {
"node": "~24.15"
},
"devEngines": {
"runtime": {
"name": "node",
"version": "~24.15",
"onFail": "error"
},
"packageManager": [
{
"name": "pnpm",
"version": "10.33.0",
"onFail": "error"
},
{
"name": "npm",
"version": "~11.12.1",
"onFail": "warn"
}
]
},
"scripts": {
"build": "pnpm vite build",
"build-dev": "pnpm vite build -w -m development",
"test": "pnpm exec vitest run",
"test:development": "pnpm exec vitest --ui --watch",
"format:check": "pnpm exec prettier -l .",
"format:write": "pnpm exec prettier -w .",
"lint": "pnpm lint:eslint",
"lint:eslint": "pnpm exec eslint ."
},
"dependencies": {
"tslib": "~2.8.1"
},
"devDependencies": {
"@eslint/js": "~10.0.1",
"@microsoft/api-extractor": "~7.58.7",
"@types/node": "~24.12.2",
"@vitest/coverage-v8": "~4.1.5",
"@vitest/ui": "~4.1.5",
"eslint": "~10.2.1",
"eslint-config-prettier": "~10.1.8",
"globals": "~17.5.0",
"prettier": "~3.8.3",
"prettier-plugin-organize-imports": "~4.3.0",
"typescript": "~5.9.3",
"typescript-eslint": "~8.59.1",
"vite": "~8.0.10",
"vite-plugin-dts": "~4.5.4",
"vite-plugin-static-copy": "~4.1.0",
"vitest": "~4.1.5"
}
}