-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.52 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
{
"name": "readue",
"version": "0.0.8",
"description": "README 生成器。",
"main": "./lib/index.js",
"scripts": {
"new:pkg": "lerna create",
"test:self": "pnpm build && readue",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "pnpm --filter=@readue/* run build",
"dev:app": "pnpm --filter=@readue/app run dev",
"dev:docs": "pnpm --filter=@readue/docs run dev",
"ts": "ts-node src/",
"ci:version": "lerna version patch --yes --conventional-commits",
"ci:publish": "lerna publish from-package --yes"
},
"keywords": [],
"author": "lexmin0412 <[email protected]>",
"license": "ISC",
"devDependencies": {
"@eat-fish/changelog": "^1.0.5",
"@types/node": "^20.12.7",
"lerna": "^8.1.2",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">=14.0.0",
"pnpm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lexmin0412/readue.git"
},
"files": [
"es",
"lib"
],
"types": "./lib/index.d.ts",
"jsnext:main": "./es/index.js",
"module": "./es/index.js",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"dependencies": {
"@readue/block-base_info": "workspace:*",
"@readue/block-env_requirement": "workspace:*",
"@readue/block-packages": "workspace:*",
"@readue/block-star_history": "workspace:*",
"@readue/block-techstack": "workspace:*",
"@readue/block-tree": "workspace:*"
}
}