-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.24 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.24 KB
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
{
"name": "xhs-spec",
"version": "0.1.1",
"description": "Repo-first CLI for operating Xiaohongshu content workflows with AI tools.",
"type": "module",
"packageManager": "bun@1.3.4",
"bin": {
"xhs-spec": "src/cli.ts"
},
"files": [
"src",
"templates",
"README.md"
],
"engines": {
"bun": ">=1.3.4"
},
"keywords": [
"xhs",
"xiaohongshu",
"cli",
"ai",
"content-ops"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/liyown/XHSSpec.git"
},
"homepage": "https://github.com/liyown/XHSSpec#readme",
"bugs": {
"url": "https://github.com/liyown/XHSSpec/issues"
},
"scripts": {
"start": "bun run ./src/cli.ts",
"build": "bun run ./scripts/build.ts",
"check": "bun test",
"test": "bun test",
"test:smoke": "bun test ./scripts/smoke.test.ts",
"prepack": "bun run build",
"pack:dry-run": "npm pack --dry-run",
"release:npm": "npm publish --access public",
"docs:dev": "vitepress dev pages",
"docs:build": "vitepress build pages",
"docs:preview": "vitepress preview pages"
},
"devDependencies": {
"@types/node": "^25.4.0",
"typescript": "^5.9.2",
"vitepress": "^1.6.4"
}
}