-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.09 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.09 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
{
"name": "karotter-js",
"version": "0.5.0",
"description": "非公式の JavaScript 向け Karotter API クライアント",
"main": "dist/index.js",
"scripts": {
"build": "tsc --build",
"format": "prettier --write .",
"lint": "eslint",
"prepare": "pnpm build"
},
"keywords": [
"Karotter",
"API",
"JavaScript",
"TypeScript"
],
"author": "Cheesecake2960",
"license": "MIT",
"packageManager": "pnpm@10.33.0",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.58.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0"
},
"type": "module",
"dependencies": {
"axios": "^1.14.0"
},
"files": [
"dist",
"types"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cheesecake2960/karotter-js.git"
}
}