-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.54 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
55
56
57
58
{
"name": "twicas-api",
"version": "0.2.0",
"description": "TwiCas API v2 向けの軽量 TypeScript クライアントです。",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./express": {
"import": "./dist/receivers/express.js",
"types": "./dist/receivers/express.d.ts"
},
"./hono": {
"import": "./dist/receivers/hono.js",
"types": "./dist/receivers/hono.d.ts"
}
},
"scripts": {
"build": "tsc",
"test": "vitest",
"test:watch": "vitest --watch",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"ci:publish": "pnpm publish -r --no-git-checks --access=public"
},
"keywords": [
"twitcasting",
"api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/n-soukun/twicas-api.git"
},
"homepage": "https://github.com/n-soukun/twicas-api#readme",
"author": "n-soukun",
"license": "MIT",
"packageManager": "pnpm@11.9.0+sha512.bd682d5d03fe525ef7c9fd6780c6884d1e756ac4c9c9fe00c538782824310dcf90e3ddc4f53835f06dfaebd5085e41855e0bcbb3b60de2ac5bbab89e5036f03b",
"peerDependencies": {
"express": ">=4",
"hono": ">=4"
},
"dependencies": {
"strict-event-emitter": "^0.5.1",
"zod": "^4.1.12"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"dotenv": "^17.2.3",
"hono": "^4.12.14",
"msw": "^2.12.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"vitest": "^4.0.9"
}
}