-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
48 lines (48 loc) · 1.16 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
{
"name": "qiji-font",
"version": "0.0.1",
"private": true,
"description": "齊伋體 Qiji font",
"scripts": {
"build": "echo TODO!",
"build:site": "cd workflow; node make_site.js",
"release": "release-it"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LingDong-/qiji-font.git"
},
"keywords": [],
"author": "Lingdong Huang<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/LingDong-/qiji-font/issues"
},
"homepage": "https://github.com/LingDong-/qiji-font#readme",
"release-it": {
"github": {
"release": true,
"releaseName": "${version}",
"releaseNotes": "node ./scripts/releasenotes.js ${latestVersion} ${version}",
"assets": [
"dist/*.*"
]
},
"npm": {
"publish": false
},
"hooks": {
"after:npm:bump": "npm run build",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
}
},
"devDependencies": {
"axios": "^0.19.2",
"fs-extra": "^8.1.0",
"release-it": "^12.4.3"
},
"dependencies": {
"canvas": "^2.6.1",
"ttf2woff2": "^3.0.0"
}
}