-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.36 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.36 KB
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
55
56
57
58
{
"name": "@e280/scute",
"version": "0.3.2",
"description": "buildy bundly static site generator",
"license": "MIT",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"type": "module",
"main": "./x/index.js",
"exports": {
".": "./x/index.js"
},
"files": [
"x",
"s"
],
"bin": {
"scute": "./x/scute/cli.js"
},
"scripts": {
"build": "rm -rf x && mkdir x && ln -s '$(realpath assets)' x/assets && ln -s '$(realpath node_modules)' x/node_modules && tsc",
"scute": "node ./x/scute/cli.js -v",
"help": "node ./x/scute/cli.js --help",
"dev": "node --watch x/tests.test.js & tsc -w & http-server x & wait",
"test": "node x/tests.test.js"
},
"dependencies": {
"@benev/argv": "^0.3.14",
"@e280/sten": "^0.1.1",
"@e280/stz": "^0.2.30",
"braces": "^3.0.3",
"chokidar": "^5.0.0",
"esbuild": "^0.28.0",
"globby": "^16.2.0",
"minimatch": "^10.2.5",
"shell-quote": "^1.8.3",
"zx": "^8.8.5"
},
"devDependencies": {
"@e280/science": "^0.1.10",
"@types/braces": "^3.0.5",
"@types/node": "^25.6.0",
"@types/shell-quote": "^1.7.5",
"http-server": "^14.1.1",
"typescript": "^6.0.2"
},
"keywords": [
"static site generator",
"ssg"
],
"homepage": "https://github.com/e280/scute#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/e280/scute.git"
},
"bugs": {
"url": "https://github.com/e280/scute/issues"
}
}