-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.17 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.17 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "narou",
"version": "2.0.1",
"description": "Narou API Wrapper",
"repository": {
"type": "git",
"url": "git+https://github.com/deflis/node-narou.git"
},
"license": "MIT",
"author": "deflis <deflis@gmail.com>",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.mts",
"node": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"browser": {
"import": "./dist/index.browser.mjs",
"require": "./dist/index.browser.cjs"
},
"default": "./dist/index.mjs"
},
"./browser": {
"types": "./dist/index.browser.d.mts",
"import": "./dist/index.browser.mjs",
"require": "./dist/index.browser.cjs",
"default": "./dist/index.browser.mjs"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.mts",
"files": [
"dist",
"src",
"package.json",
"pnpm-lock.yaml",
"README.md"
],
"scripts": {
"build": "run-z check build:tsc",
"build:tsc": "tsdown",
"check": "run-z check:lint,check:build,test",
"check:lint": "eslint src/** test/**",
"check:build": "tsc --noEmit",
"prepack": "run-z format build",
"format": "eslint --fix src/** test/**",
"test": "vitest run",
"docs": "run-z docs:clean docs:typedoc docs:json docs:llms",
"docs:clean": "pnpm dlx rimraf docs",
"docs:typedoc": "pnpm dlx typedoc --out ./docs src/index.ts",
"docs:json": "pnpm dlx typedoc --json docs/api.json src/index.ts",
"docs:llms": "node scripts/generate-llms-txt.js"
},
"devDependencies": {
"@swc/core": "^1.15.3",
"@types/node": "^24.10.2",
"@typescript-eslint/eslint-plugin": "^8.49.0",
"@typescript-eslint/parser": "^8.49.0",
"@vitest/coverage-v8": "^3.2.4",
"date-fns": "^4.1.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"msw": "^2.12.4",
"prettier": "^3.7.4",
"run-z": "^2.1.0",
"tsdown": "^0.17.2",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8"
},
"module": "dist/index.js",
"packageManager": "pnpm@10.10.0"
}