-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.26 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.26 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
{
"name": "@typeup/dom",
"version": "1.0.11-beta.12",
"description": "Document Object Model for TypeUp.",
"author": "Simon Mika <simon@mika.se>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/typeup/dom.git"
},
"bugs": {
"url": "https://github.com/typeup/dom/issues"
},
"homepage": "https://github.com/typeup",
"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": "release-${version}"
},
"github": {
"release": true
},
"scripts": {
"lint": "biome format .",
"format": "biome format --write .",
"type-check": "tsc --noEmit",
"build": "tsc -p tsconfig.build.json",
"test": "vitest --run",
"coverage": "vitest --coverage",
"clean": "rimraf dist node_modules coverage",
"verify": "npm run build && npm run test && npm run lint && npm audit --omit=dev"
},
"devDependencies": {
"@biomejs/biome": "^2.4.13",
"@vitest/coverage-v8": "^4.1.5",
"rimraf": "^6.1.3",
"typescript": "6.0.3",
"vite": "^8.0.10",
"vitest": "^4.1.5"
},
"dependencies": {
"mendly": "^3.1.1-beta.17"
}
}