-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
37 lines (37 loc) · 892 Bytes
/
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
{
"name": "create-vivliostyle-theme",
"description": "Create Vivliostyle theme at ease",
"version": "1.0.1",
"author": "Yasuaki Uechi <[email protected]>",
"scripts": {
"build": "shx rm -rf lib && NODE_ENV=production tsc && shx chmod +x lib/cli.js",
"dev": "tsc -w",
"prepublishOnly": "yarn build"
},
"dependencies": {
"chalk": "^4.1.0",
"create-create-app": "^7.1.0"
},
"devDependencies": {
"shx": "^0.3.2",
"typescript": "^5.3.3"
},
"bin": "lib/cli.js",
"files": [
"lib",
"templates"
],
"repository": {
"type": "git",
"url": "https://github.com/vivliostyle/themes.git",
"directory": "packages/create-vivliostyle-theme"
},
"bugs": {
"url": "https://github.com/vivliostyle/themes/issues"
},
"homepage": "https://github.com/vivliostyle/themes",
"keywords": [
"vivliostyle"
],
"license": "Apache-2.0"
}