-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "otskit",
"version": "0.1.0",
"description": "Opinionated collection of TypeScript utility functions.",
"keywords": [
"typescript",
"utilities",
"utility",
"helpers",
"functions",
"toolkit",
"ts",
"utils"
],
"license": "MIT",
"author": "Sylvain Simao",
"homepage": "https://github.com/maoosi/otskit",
"repository": {
"type": "git",
"url": "https://github.com/maoosi/otskit.git"
},
"bugs": {
"url": "https://github.com/maoosi/otskit/issues"
},
"type": "module",
"files": [
"docs",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"check": "tsc --noEmit",
"predocs": "rm -rf ./docs",
"docs": "typedoc",
"pretest": "pnpm run check",
"test": "npx vitest run --reporter verbose"
},
"devDependencies": {
"@biomejs/biome": "2.1.2",
"remark-insert-headings": "^0.0.0",
"remark-toc": "^9.0.0",
"typedoc": "^0.28.7",
"typedoc-plugin-markdown": "^4.7.0",
"typedoc-plugin-remark": "^2.0.1",
"typescript": "^5.8.3",
"vite-node": "^3.2.4",
"vitest": "^3.2.4"
}
}