create-book 0.3.3 → 0.5.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/lib/cli.js +8 -10
- package/package.json +18 -13
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-book",
|
|
3
3
|
"description": "The fastest way to start writing book with Vivliostyle ecosystem.",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.5.1",
|
|
5
5
|
"author": "Vivliostyle Foundation",
|
|
6
6
|
"license": "Apache-2.0",
|
|
7
7
|
"engines": {
|
|
@@ -30,29 +30,34 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
|
-
"test": "echo \"Test is not implemented\"",
|
|
34
33
|
"build": "npm run tsup -- --minify",
|
|
35
34
|
"clean": "shx rm -rf lib",
|
|
36
35
|
"dev": "npm run tsup -- --watch",
|
|
37
36
|
"prepare": "npm run clean && npm run build",
|
|
38
37
|
"release": "release-it",
|
|
39
38
|
"release:dry": "release-it --dry-run",
|
|
40
|
-
"tsup": "tsup src/cli.ts -d lib"
|
|
39
|
+
"tsup": "tsup src/cli.ts -d lib",
|
|
40
|
+
"test": "jest",
|
|
41
|
+
"test:debug": "jest --silent=false --verbose false"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
44
|
"chalk": "^4.1.2",
|
|
44
45
|
"create-create-app": "^7.1.0",
|
|
45
|
-
"execa": "^5.1.1"
|
|
46
|
+
"execa": "^5.1.1",
|
|
47
|
+
"upath": "^2.0.1"
|
|
46
48
|
},
|
|
47
49
|
"devDependencies": {
|
|
48
|
-
"@release-it/conventional-changelog": "^
|
|
49
|
-
"@types/
|
|
50
|
-
"
|
|
51
|
-
"
|
|
52
|
-
"
|
|
53
|
-
"
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
50
|
+
"@release-it/conventional-changelog": "^4.2.2",
|
|
51
|
+
"@types/jest": "^27.4.1",
|
|
52
|
+
"@types/node-fetch": "^2.6.1",
|
|
53
|
+
"husky": "^4.3.8",
|
|
54
|
+
"jest": "^27.5.1",
|
|
55
|
+
"prettier": "^2.6.0",
|
|
56
|
+
"pretty-quick": "^3.1.3",
|
|
57
|
+
"release-it": "^14.13.0",
|
|
58
|
+
"shx": "^0.3.4",
|
|
59
|
+
"ts-jest": "^27.1.3",
|
|
60
|
+
"tsup": "^5.12.1",
|
|
61
|
+
"typescript": "^4.6.2"
|
|
57
62
|
}
|
|
58
63
|
}
|