-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.5 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.5 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
59
60
61
62
63
{
"name": "connpass-v2",
"version": "2.8.0",
"description": "The connpass API client library for Node.js.",
"keywords": [
"connpass"
],
"type": "module",
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
}
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build --emptyOutDir false",
"preview": "vite preview",
"format": "prettier './**/*.ts' --write",
"test": "vitest run --passWithNoTests",
"test:coverage": "vitest run --coverage",
"docs": "typedoc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryohidaka/node-connpass.git"
},
"author": "ryohidaka",
"contributors": [
{
"name": "HANATANI Takuma",
"email": "mail@potato4d.me",
"url": "https://github.com/potato4d"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ryohidaka/node-connpass/issues"
},
"homepage": "https://github.com/ryohidaka/node-connpass#readme",
"dependencies": {
"axios": "^1.8.4",
"qs": "^6.14.0"
},
"devDependencies": {
"@types/node": "^24.0.3",
"@types/qs": "^6.9.18",
"@vitest/coverage-v8": "^3.1.1",
"prettier": "^3.5.3",
"typedoc": "^0.28.3",
"typedoc-plugin-markdown": "^4.6.2",
"typescript": "^5.8.3",
"vite": "^7.1.1",
"vite-plugin-dts": "^4.5.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^3.1.1"
}
}