-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.84 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.84 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
{
"name": "@typeup/renderer",
"version": "1.1.6-beta.1",
"description": "Renderer for TypeUp.",
"author": "Simon Mika <simon@mika.se>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/typeup/renderer.git"
},
"bugs": {
"url": "https://github.com/typeup/renderer/issues"
},
"homepage": "https://github.com/typeup/renderer",
"private": false,
"type": "module",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"git": {
"tagName": "v${version}"
},
"github": {
"release": true
},
"scripts": {
"lint": "biome format .",
"format": "biome format --write .",
"type-check": "tsc --noEmit",
"build": "rimraf dist && tsc -p tsconfig.build.json",
"test": "vitest --run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage",
"coverage:open": "vitest --coverage && open coverage/index.html",
"prepare": "npm run build",
"prepublishOnly": "npm run verify",
"clean": "rimraf dist node_modules coverage",
"verify": "npm run type-check && npm run build && npm run test && npm run lint && npm audit --omit=dev --audit-level moderate",
"release": "npm run verify && npm version patch && git push --follow-tags",
"release:minor": "npm run verify && npm version minor && git push --follow-tags",
"release:major": "npm run verify && npm version major && git push --follow-tags"
},
"devDependencies": {
"@biomejs/biome": "2.4.14",
"@vitest/coverage-v8": "^4.1.5",
"rimraf": "^6.1.3",
"typescript": "6.0.3",
"vite": "^8.0.11",
"vitest": "^4.1.5"
},
"dependencies": {
"@typeup/dom": "^1.0.11-beta.9",
"mendly": "^3.1.1-beta.17",
"yuml2svg": "^5.0.1"
},
"overrides": {
"jsdom": "^29.1.1"
}
}