-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.22 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
48
49
50
51
52
53
54
{
"name": "@mspg/core",
"version": "0.0.1",
"description": "magic static site generator",
"main": "./src/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git@github.com/mspg/core"
},
"bin": {
"mspg": "./bin.js"
},
"engines": {
"node": ">=14.2.0"
},
"engineStrict": true,
"author": "Wizards & Witches",
"license": "AGPL-3.0",
"contributors": [
{
"name": "jascha ehrenreich",
"github": "jaeh"
}
],
"dependencies": {
"@magic/deep": "0.1.15",
"@magic/fs": "0.0.27",
"@magic/log": "0.1.17",
"@magic/types": "0.1.22",
"sharp": "0.30.7"
},
"devDependencies": {
"@magic/format": "0.0.44",
"@magic/test": "0.2.14"
},
"files": [
"src",
"bin.js"
],
"scripts": {
"start": "t -p",
"test": "t",
"build": "NODE_ENV=production ./bin.js build zip",
"prod": "NODE_ENV=production ./bin.js build serve watch",
"dev": "./bin.js build serve watch",
"format": "f -w -f js json",
"format:check": "f -f js json",
"calls": "calls",
"connect": "NODE_ENV=production ./bin.js connect",
"publish": "NODE_ENV=production ./bin.js build zip publish",
"serve": "NODE_ENV=production ./bin.js serve"
}
}