-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
88 lines (88 loc) · 2.11 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
{
"name": "jike-sdk",
"version": "0.27.0",
"packageManager": "[email protected]",
"description": "Jike Ⓙ SDK for Node.js",
"type": "module",
"keywords": [
"jike",
"sdk"
],
"license": "AGPL-3.0",
"homepage": "https://github.com/open-jike/jike-sdk#readme",
"bugs": {
"url": "https://github.com/open-jike/jike-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/open-jike/jike-sdk.git"
},
"author": "三咲智子 <[email protected]>",
"files": [
"*.d.ts",
"dist"
],
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"./*": "./*"
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"sideEffects": false,
"scripts": {
"dev": "tsx playground/main.ts",
"build": "tsup && pnpm run build:types",
"build:types": "tsc --emitDeclarationOnly --declaration",
"docs:build": "typedoc",
"docs:preview": "serve docs",
"lint": "eslint --cache .",
"lint:fix": "pnpm run lint --fix",
"format": "prettier --cache --write .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:deno": "cd tests/deno && deno run --allow-net --import-map=import_map.json --allow-env index.ts",
"release": "bumpp && pnpm publish",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"eventemitter3": "^5.0.1",
"ky": "^1.2.3"
},
"devDependencies": {
"@faker-js/faker": "^9.0.0",
"@sxzz/eslint-config": "^3.9.0",
"@sxzz/prettier-config": "^2.0.1",
"@types/md5": "^2.3.5",
"@types/node": "^20.12.6",
"@vitest/ui": "^2.0.3",
"bumpp": "^9.4.0",
"esbuild": "^0.20.2",
"eslint": "^9.0.0",
"md5": "^2.3.0",
"rollup": "^4.14.1",
"serve": "^14.2.1",
"sharp": "^0.33.3",
"tsup": "^8.0.2",
"tsx": "^4.7.2",
"typedoc": "^0.25.13",
"typescript": "^5.4.4",
"vitest": "^2.0.3"
},
"engines": {
"node": ">=18.12.0"
},
"prettier": "@sxzz/prettier-config"
}