-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.69 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
71
72
{
"name": "osr-generators",
"version": "0.1.0",
"description": "Generators for OSR-style tabletop roleplaying games",
"repository": {
"type": "github",
"url": "git+https://github.com/riccjohn/osr-generators.git"
},
"private": false,
"type": "module",
"author": {
"email": "[email protected]",
"name": "John Riccardi"
},
"bugs": "https://github.com/riccjohn/osr-generators/issues",
"keywords": [
"osr",
"rpg",
"ttrpg",
"knave",
"mork",
"borg",
"cairn",
"d&d",
"dungeon",
"dragon",
"shadowdark",
"tabletop",
"roleplaying"
],
"license": "GPL-3.0-only",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.es.js",
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"test": "vitest",
"test:ci": "vitest run --coverage --passWithNoTests",
"lint": "eslint",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "tsc --noEmit",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.24.1",
"@typescript-eslint/parser": "^8.24.1",
"@vitest/coverage-v8": "^3.0.6",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.1",
"eslint-define-config": "^2.1.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.1.7",
"jiti": "^2.4.2",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"tsup": "^8.3.6",
"typescript": "^5.7.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.0.6"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,md}": [
"prettier --write",
"pnpm lint --fix",
"pnpm test:ci"
]
}
}