-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
46 lines (46 loc) · 918 Bytes
/
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
{
"type": "module",
"name": "@shower/core",
"description": "Core for Shower HTML presentation engine",
"version": "3.3.0",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Vadim Makeev",
"email": "[email protected]",
"url": "https://pepelsbey.dev"
},
"homepage": "https://github.com/shower/core",
"repository": {
"type": "git",
"url": "git://github.com/shower/core.git"
},
"bugs": "https://github.com/shower/shower/issues",
"license": "MIT",
"keywords": [
"shower",
"presentation",
"core"
],
"main": "lib/index.js",
"files": [
"lib",
"dist/index.js",
"LICENSE.md",
"README.md"
],
"devDependencies": {
"@eslint/js": "^9.13.0",
"eslint": "^9.13.0",
"globals": "^15.11.0",
"rollup": "^4.24.0",
"serve": "^14.2.4"
},
"scripts": {
"build": "rollup --config",
"build:watch": "rollup --config --watch",
"serve": "serve dist",
"test": "eslint"
}
}