forked from unjs/automd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.82 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "automd",
"version": "0.3.6",
"description": "Your automated markdown maintainer!",
"repository": "unjs/automd",
"license": "MIT",
"sideEffects": false,
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"types": "./dist/index.d.ts",
"bin": {
"automd": "dist/cli.mjs"
},
"files": [
"dist"
],
"scripts": {
"automd": "jiti src/cli.ts",
"docs:dev": "cd docs && bun i && bun dev",
"build": "pnpm automd && unbuild",
"dev": "vitest -u",
"lint": "eslint --cache --ext .ts,.js,.mjs,.cjs . && prettier -c src",
"lint:fix": "eslint --cache --ext .ts,.js,.mjs,.cjs . --fix && prettier -c src -w",
"prepack": "pnpm build",
"release": "pnpm test && changelogen --release && npm publish && git push --follow-tags && pnpm build --stub",
"test": "pnpm lint && pnpm test:types && vitest run --coverage",
"test:types": "tsc --noEmit --skipLibCheck"
},
"dependencies": {
"@parcel/watcher": "^2.4.1",
"c12": "^1.9.0",
"citty": "^0.1.6",
"consola": "^3.2.3",
"defu": "^6.1.4",
"destr": "^2.0.3",
"didyoumean2": "^6.0.1",
"globby": "^14.0.1",
"magic-string": "^0.30.7",
"mdbox": "^0.1.0",
"mlly": "^1.6.1",
"ofetch": "^1.3.3",
"pathe": "^1.1.2",
"perfect-debounce": "^1.0.0",
"pkg-types": "^1.0.3",
"scule": "^1.3.0",
"untyped": "^1.4.2"
},
"devDependencies": {
"@types/node": "^20.11.20",
"@vitest/coverage-v8": "^1.3.1",
"automd": "link:.",
"changelogen": "^0.5.5",
"eslint": "^8.57.0",
"eslint-config-unjs": "^0.2.1",
"jiti": "^1.21.0",
"prettier": "^3.2.5",
"typescript": "^5.3.3",
"unbuild": "^2.0.0",
"vitest": "^1.3.1"
},
"packageManager": "[email protected]"
}