forked from akonan/wiremd
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
104 lines (104 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
104 lines (104 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "wiremd",
"version": "0.1.7",
"description": "Text-first UI design tool - Create wireframes and mockups using Markdown syntax",
"type": "module",
"sideEffects": false,
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./parser": {
"types": "./dist/parser/index.d.ts",
"import": "./dist/parser.js",
"require": "./dist/parser.cjs"
},
"./renderer": {
"types": "./dist/renderer/index.d.ts",
"import": "./dist/renderer.js",
"require": "./dist/renderer.cjs"
}
},
"bin": {
"wiremd": "./bin/wiremd.js"
},
"files": [
"dist",
"bin",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"prepare": "npm run build",
"dev": "vite build --watch",
"build": "tsc && vite build",
"test": "vitest run --config vitest.config.ts",
"test:watch": "vitest --config vitest.config.ts",
"test:coverage": "vitest run --config vitest.config.ts --coverage",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"clean": "rm -rf dist node_modules",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs",
"editor": "npm run build && cd editor && npm install && npm run dev",
"skill:zip": "bash scripts/package-skill.sh"
},
"dependencies": {
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"mdast-util-from-markdown": "^2.0.0",
"mdast-util-to-markdown": "^2.1.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"unified": "^11.0.4",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@types/node": "^20.19.24",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"@vitest/coverage-v8": "^1.0.0",
"eslint": "^8.54.0",
"typescript": "^5.3.2",
"vite": "^5.0.0",
"vite-plugin-dts": "^3.6.4",
"vitepress": "^1.0.0",
"vitest": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/akonan/wiremd.git"
},
"keywords": [
"markdown",
"wireframe",
"mockup",
"parser",
"ui-design",
"prototyping",
"text-based",
"design-tool",
"html",
"renderer"
],
"author": "Antti Akonniemi <antti@kiskolabs.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/akonan/wiremd/issues"
},
"homepage": "https://github.com/akonan/wiremd#readme",
"publishConfig": {
"access": "public"
}
}