-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.2 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.2 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
{
"name": "mise",
"version": "1.0.0",
"type": "module",
"directories": {
"doc": "docs",
"man": "man",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint-fig": "eslint 'xtasks/fig/**/*.ts' && npx prettier --check 'xtasks/fig/**/*.ts' --parser typescript",
"lint-fig:fix": "eslint 'xtasks/fig/**/*.ts' --fix && npx prettier --write 'xtasks/fig/**/*.ts' --parser typescript",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"author": "@jdx",
"resolutions": {
"esbuild": "0.21.5"
},
"devDependencies": {
"@fig/eslint-config-autocomplete": "^2.0.0",
"@tsconfig/node24": "^24.0.0",
"@types/markdown-it": "^14.1.2",
"@types/node": "^22.18.12",
"@withfig/autocomplete-tools": "^2.11.0",
"@withfig/autocomplete-types": "^1.31.0",
"eslint": "^8.57.1",
"js-toml": "^1.0.2",
"markdown-it": "^14.1.0",
"toml": "^3.0.0",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitepress": "1.6.4",
"vitepress-plugin-group-icons": "^1.6.5",
"vitepress-plugin-mermaid": "2.0.17",
"vitepress-plugin-tabs": "^0.7.3"
}
}