forked from windycom/windy-plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.55 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
{
"name": "windy-plugin-examples",
"type": "module",
"version": "1.0.0",
"description": "Windy plugin system enables anyone, with basic knowledge of Javascript to enhance Windy with new functionality (default desc).",
"main": "dist/plugin.js",
"scripts": {
"start": "node ./compiler.js --build --watch --prompt --serve --transpile",
"start-dev": "node ./compiler.js --build --watch --serve --transpile",
"prepublishOnly": "node ./test/prepublish.js",
"test": "node ./test/prepublish.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/windycom/windy-plugins"
},
"author": "Windyty, S.E.",
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.21.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.3",
"chokidar": "^3.5.3",
"colorette": "^2.0.20",
"commander": "^10.0.1",
"consola": "^3.1.0",
"decache": "^4.6.1",
"estree-walker": "^3.0.3",
"express": "^4.18.2",
"html-minifier": "^4.0.0",
"less": "^4.1.3",
"magic-string": "^0.30.0",
"prompts": "^2.4.2",
"rollup": "^3.22.0",
"rollup-plugin-cleanup": "^3.2.1",
"ucfirst": "^1.0.0"
},
"devDependencies": {
"eslint": "^8.40.0",
"eslint-plugin-html": "^7.1.0",
"prettier": "^2.8.8"
}
}