-
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.3 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.3 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/parser",
"version": "1.2.5-beta.12",
"description": "Parser for TypeUp documents with a simple event-based API.",
"author": "Simon Mika <simon@mika.se>",
"license": "MIT",
"private": false,
"repository": {
"type": "git",
"url": "git+https://github.com/typeup/parser.git"
},
"bugs": {
"url": "https://github.com/typeup/parser/issues"
},
"homepage": "https://github.com/typeup/parser",
"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 .",
"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.14",
"@vitest/coverage-v8": "4.1.7",
"rimraf": "6.1.3",
"typescript": "6.0.3",
"vite": "8.0.14",
"vitest": "4.1.7"
},
"dependencies": {
"@typeup/dom": "^1.0.11-beta.12",
"mendly": "^3.1.1-beta.17"
}
}