generated from zakarialaoui10/ziko-addons-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.15 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
{
"name": "mdzjs",
"version": "0.0.1",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "cross-env NODE_ENV=development rollup --config rollup.config.js",
"watch": "cross-env NODE_ENV=development rollup --config rollup.config.js -w",
"build": "cross-env NODE_ENV=production rollup --config rollup.config.js"
},
"./": {
"import": "./src/index.js"
},
"./vite": {
"import": "./src/bundlers/vite.js"
},
"author": "zakaria elalaoui",
"keywords": [
"zikojs",
"zikojs-addons",
"markdown",
"remark",
"mdx",
"preprocessor"
],
"license": "MIT",
"dependencies": {
"acorn": "^8.14.0",
"htmlparser2": "^9.1.0",
"remark-frontmatter": "^5.0.0",
"remark-gfm": "^4.0.0",
"remark-mdx": "^3.1.0",
"remark-parse": "^11.0.0",
"rollup": "^4.24.0",
"unified": "^11.0.5",
"yaml": "^2.6.1",
"ziko": "^0.0.22"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"cross-env": "^7.0.3"
}
}