-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.7 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
55
56
57
58
59
60
61
62
63
64
{
"name": "@benev/turtle",
"version": "0.6.8",
"description": "static site generator",
"license": "MIT",
"author": "Chase Moskal <[email protected]>",
"type": "module",
"main": "x/index.js",
"bin": "x/turtle.js",
"files": [
"x",
"s"
],
"scripts": {
"build": "run-s clean compile permissions",
"clean": "rm -rf x && mkdir x",
"compile": "tsc",
"permissions": "chmod +x x/turtle.js",
"start": "run-p watch http",
"http": "http-server x/demo",
"watch": "tsc -w",
"watch-test": "chokidar 'x/**/*.js' -c 'npm test'",
"demo": "node x/turtle.js ssg --in=s/demo,x/demo --out=x/demo --exclude=\"**/*.partial.html.js\" -v",
"devlinks": "run-s devlinks-argv",
"devlinks-argv": "rm -rf node_modules/@benev/argv && ln -s \"$(realpath ../argv)\" node_modules/@benev/argv",
"help": "node x/turtle.js --help",
"test": "cynic node x/tests.test.js"
},
"dependencies": {
"@benev/argv": "^0.3.8",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-wasm": "^6.2.2",
"braces": "^3.0.3",
"chokidar": "^4.0.3",
"chokidar-cli": "^3.0.0",
"globby": "^14.0.2",
"http-server": "^14.1.1",
"importly": "^0.2.3",
"minimatch": "^10.0.1",
"rollup": "^4.31.0",
"terser": "^5.37.0",
"zx": "^8.3.0"
},
"devDependencies": {
"@types/braces": "^3.0.5",
"@types/node": "^22.10.7",
"cynic": "^0.2.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.7.3"
},
"keywords": [
"static-site-generator",
"ssg"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/turtle.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/turtle/issues"
},
"homepage": "https://github.com/benevolent-games/turtle#readme"
}