-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
44 lines (44 loc) · 1.02 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
{
"name": "imml",
"version": "1.0.3",
"description": "Create minimalist, blazing fast no-js websites from a single plain text file",
"scripts": {
"start": "vite ./editor",
"imml": "node ./lib/make.js",
"build-editor": "vite build ./editor",
"build-library": "vite build ./lib"
},
"author": "Leonardo Cavaletti (http://github.com/leoncvlt)",
"repository": "https://github.com/leoncvlt/imml",
"funding": "https://www.buymeacoffee.com/leoncvlt",
"license": "MIT",
"keywords": [
"markdown",
"parse",
"static",
"site",
"generator"
],
"devDependencies": {
"commander": "^7.2.0",
"html-minifier": "^4.0.0",
"jsdom": "^16.6.0",
"monaco-editor": "^0.24.0",
"vite": "^2.3.6"
},
"dependencies": {
"marked": "^2.0.7"
},
"files": [
"lib"
],
"main": "./lib/dist/imml.umd.js",
"module": "./lib/dist/imml.es.js",
"exports": {
".": {
"import": "./lib/dist/imml.es.js",
"require": "./lib/dist/imml.umd.js"
}
},
"bin": "./lib/make.js"
}