-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.36 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
{
"name": "@joggr/tempo",
"version": "0.11.0",
"description": "Library used to programmatically build markdown documents, with a heavy tilt toward GitHub Flavored Markdown (GFM).",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest --coverage",
"build": "rslib build",
"dev": "rslib build --watch",
"generate:examples": "tsx examples/index.ts",
"analyze": "biome check",
"analyze:ci": "biome ci --diagnostic-level=error",
"analyze:types": "tsc --noEmit",
"fix": "biome check --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joggrdocs/tempo.git"
},
"author": "Joggr Team <engineering@joggr.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/joggrdocs/tempo/issues"
},
"homepage": "https://github.com/joggrdocs/tempo#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@rslib/core": "^0.0.18",
"@types/node": "^22.9.0",
"@vitest/coverage-istanbul": "^2.1.5",
"tsx": "^4.19.2",
"type-fest": "^4.26.1",
"typescript": "^5.6.3",
"vitest": "^2.1.5"
},
"packageManager": "yarn@4.4.1"
}