-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 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
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
69
{
"name": "@nuxt-alt/markdown-it",
"version": "0.0.2",
"description": "Alternaive module to @nuxtjs/markdownit",
"repository": {
"type": "git",
"url": "git+https://github.com/nuxt-alt/markdown-it.git"
},
"license": "MIT",
"type": "module",
"keywords": [
"markdown-it",
"nuxt",
"nuxt3",
"nuxtjs",
"nuxt-module",
"nuxt-plugin",
"markdown",
"md",
"@nuxtjs/markdownit",
"@nuxt-alt/markdown-it"
],
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"dev:prepare": "JITI_ESM_RESOLVE=1 jiti ./commands/cli.ts build --stub && JITI_ESM_RESOLVE=1 jiti ./commands/cli.ts prepare",
"prepack": "JITI_ESM_RESOLVE=1 jiti ./commands/cli.ts build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "^3.9.1",
"@refactorjs/serialize": "^1.0.7",
"defu": "^6.1.4",
"markdown-it": "^14.0.0"
},
"devDependencies": {
"@nuxt/devtools": "latest",
"@nuxt/eslint-config": "^0.2.0",
"@nuxt/schema": "^3.9.0",
"@nuxt/test-utils": "^3.9.0",
"@types/markdown-it": "^13.0.7",
"@types/node": "^20.10.6",
"changelogen": "^0.5.5",
"eslint": "^8.56.0",
"jiti": "^1.21.0",
"nuxt": "^3.9.1",
"unbuild": "^2.0.0",
"vitest": "^1.0.0"
},
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@4.0.2"
}