-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 941 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 941 Bytes
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
{
"name": "katsuji",
"version": "0.1.1",
"description": "CJKV Automatic Dynamic Typesetting Engine",
"private": false,
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/furuochen-dev/katsuji.git"
},
"homepage": "https://github.com/furuochen-dev/katsuji#readme",
"bugs": {
"url": "https://github.com/furuochen-dev/katsuji/issues"
},
"files": [
"dist/katsuji.js",
"dist/katsuji.css",
"dist/pretext-bridge.standalone.js",
"dist/pretext-bridge.bundle.js"
],
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run build:katsuji && npm run build:pretext",
"build:katsuji": "node scripts/bundle-katsuji.mjs",
"build:pretext": "node scripts/bundle-pretext-bridge.mjs",
"dev": "node scripts/dev.mjs",
"demo": "npx --yes serve . -p 4173"
},
"devDependencies": {
"@chenglou/pretext": "^0.0.7",
"esbuild": "^0.25.0"
}
}