-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.58 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "md-powerpack",
"version": "1.0.4",
"description": "A combination of useful \"builder apis\" for vite-plugin-md",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"scripts": {
"build": "tsup src/index.ts --format=esm,cjs --clean --dts",
"build:validation": "node dist/index.js && node dist/index.cjs",
"watch": "tsup src/index.ts --format=esm,cjs --watch --dts",
"lint": "run-p lint:*",
"lint:src": "eslint src/**/*.ts --fix",
"lint:test": "eslint test/**/*.ts --fix",
"test": "vitest",
"test:ci": "vitest run",
"test:ui": "vitest:ui",
"audit:fix": "pnpm audit --fix",
"release": "run-s lint release:latest test:ci audit:fix build:validation release:bump",
"release:latest": "pnpm install",
"release:bump": "bumpp"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yankeeinlondon/md-powerpack.git"
},
"files": [
"dist"
],
"keywords": [
"vite",
"vuejs",
"markdown"
],
"author": "Ken Snyder <ken@ken.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yankeeinlondon/md-powerpack/issues"
},
"homepage": "https://github.com/yankeeinlondon/md-powerpack#readme",
"dependencies": {
"@yankeeinlondon/builder-api": "^0.4.0",
"@yankeeinlondon/code-builder": "^1.0.6",
"@yankeeinlondon/link-builder": "^1.0.4",
"@yankeeinlondon/meta-builder": "^1.0.5",
"inferred-types": "^0.22.0"
},
"devDependencies": {
"@rollup/pluginutils": "^4.2.1",
"@type-challenges/utils": "^0.1.1",
"@types/node": "^14.18.22",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"@vitejs/plugin-vue": "^3.0.1",
"@vue/test-utils": "^2.0.2",
"@vueuse/head": "^0.7.7",
"@yankeeinlondon/happy-wrapper": "^2.5.0",
"bumpp": "^8.2.1",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-unicorn": "^43.0.2",
"fp-ts": "^2.12.2",
"happy-dom": "^6.0.4",
"markdown-it": "^13.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup": "^2.77.2",
"ts-node": "^10.9.1",
"tsup": "^6.2.0",
"typescript": "^4.7.4",
"vite": "^3.0.3",
"vite-plugin-md": "^0.20.0",
"vitest": "^0.19.1",
"vue": "^3.2.37",
"vue-router": "^4.1.3"
}
}