-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 1.5 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
65
66
67
68
69
70
{
"name": "zola-bin",
"version": "0.4.0-preview.1",
"author": "U-C-S",
"license": "MIT",
"description": "Zola, A Static Site Generator, as a NPM Package",
"homepage": "https://github.com/U-C-S/zola-npm",
"repository": {
"type": "git",
"url": "https://github.com/U-C-S/zola-npm"
},
"bin": "bin/zola.js",
"main": "dist/main.js",
"types": "types/main.d.ts",
"files": [
"bin",
"dist",
"types",
"bindings.js",
"bindings.d.ts",
"CHANGELOG.md"
],
"scripts": {
"artifacts": "napi artifacts",
"build": "node setup.mjs && napi build --platform --release --cargo-cwd \"zola\" --dts bindings.d.ts --js bindings.js",
"build:debug": "node setup.mjs && napi build --platform --cargo-cwd \"zola\" --dts bindings.d.ts --js bindings.js",
"universal": "napi universal",
"prepare": "tsc",
"Test_npm_install": "sh ./tests/test_install.sh",
"Test_CZS": "sh ./tests/test_czs.sh"
},
"devDependencies": {
"@napi-rs/cli": "^2.17.0",
"@types/node": "^20.10.5",
"smol-toml": "^1.1.3",
"typescript": "^5.3.3"
},
"engines": {
"node": ">= 16"
},
"napi": {
"name": "zola-bin"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": true,
"printWidth": 110
},
"keywords": [
"zola",
"tera",
"static-site-generator",
"ssg",
"markdown",
"rust",
"html",
"scss",
"sass",
"bin",
"cli",
"front-end",
"framework"
],
"optionalDependencies": {
"zola-bin-darwin": "0.17.5-preview.1",
"zola-bin-linux": "0.17.5-preview.1",
"zola-bin-win32": "0.17.5-preview.1"
}
}