-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.4 KB
/
package.json
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
81
82
83
84
85
86
87
88
89
90
{
"name": "narou",
"version": "1.1.0",
"description": "Narou API Wrapper",
"repository": {
"type": "git",
"url": "git+https://github.com/deflis/node-narou.git"
},
"license": "MIT",
"author": "deflis <[email protected]>",
"type": "module",
"exports": {
".": {
"default": "./dist/index.js",
"require": "./dist/index.cjs",
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"browser": {
"require": "./dist/index.browser.cjs",
"import": "./dist/index.browser.js",
"types": "./dist/index.browser.d.ts"
}
},
"./browser": {
"default": "./dist/index.browser.js",
"require": "./dist/index.browser.cjs",
"import": "./dist/index.browser.js",
"types": "./dist/index.browser.d.ts"
},
"./*": {
"default": "./dist/*.js",
"require": "./dist/*.cjs",
"import": "./dist/*.js",
"types": "./dist/*.d.ts"
},
"./utils": {
"default": "./dist/utils/*.js",
"require": "./dist/utils/*.cjs",
"import": "./dist/utils/*.js",
"types": "./dist/utils/*.d.ts"
}
},
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"src",
"package.json",
"pnpm-lock.yaml",
"README.md"
],
"scripts": {
"build": "run-z check build:tsc",
"build:tsc": "tsup ./src",
"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:clean": "pnpm dlx rimraf docs",
"docs:typedoc": "pnpm dlx typedoc --out ./docs src/index.ts"
},
"dependencies": {
"date-fns": "^4.1.0"
},
"devDependencies": {
"@types/node": "^22.10.3",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vitest/coverage-v8": "^2.1.8",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.14.0",
"msw": "^2.7.0",
"prettier": "^3.4.2",
"run-z": "^2.1.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=16.0.0",
"pnpm": ">=8"
},
"module": "dist/index.js",
"packageManager": "[email protected]+sha1.75c6e8a4075abfc494770f998bf37b9ada110f51"
}