-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 2.94 KB
/
package.json
File metadata and controls
117 lines (117 loc) · 2.94 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "y-durableobjects",
"version": "1.0.5",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.cts",
"private": false,
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/napolab/y-durableobjects.git"
},
"homepage": "https://yjs.napochaan.dev/",
"bugs": {
"url": "https://github.com/napolab/y-durableobjects/issues"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
},
"./helpers/upgrade": {
"import": {
"types": "./dist/helpers/upgrade.d.ts",
"default": "./dist/helpers/upgrade.js"
},
"require": {
"types": "./dist/helpers/upgrade.d.cts",
"default": "./dist/helpers/upgrade.cjs"
}
}
},
"typesVersions": {
"*": {
"helpers": [
"./dist/helpers"
]
}
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "tsup",
"lint": "npm-run-all -p lint:*",
"lint:eslint": "eslint . --ext .ts,.tsx",
"lint:prettier": "prettier --check .",
"fmt": "npm-run-all -s fmt:*",
"fmt:prettier": "prettier --write .",
"fmt:eslint": "eslint . --ext .ts,.tsx --fix",
"publint": "publint",
"release": "changeset publish",
"test": "vitest run --passWithNoTests",
"test:watch": "vitest --passWithNoTests"
},
"author": "naporin0624",
"files": [
"dist",
"package.json",
"README.md"
],
"keywords": [
"cloudflare",
"cloudflareworkers",
"hono",
"durableobjects",
"yjs"
],
"devDependencies": {
"@changesets/cli": "^2.29.2",
"@cloudflare/vitest-pool-workers": "^0.8.18",
"@eslint/compat": "^1.2.8",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.24.0",
"@typescript-eslint/eslint-plugin": "^8.30.1",
"@typescript-eslint/parser": "^8.30.1",
"@vitest/eslint-plugin": "^1.1.42",
"eslint": "^9.24.0",
"eslint-config-prettier": "^10.1.2",
"eslint-config-standard": "^17.1.0",
"eslint-import-resolver-typescript": "^4.3.2",
"eslint-plugin-import-x": "^4.10.5",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-unicorn": "^58.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"globals": "^16.0.0",
"hono": "^4.7.7",
"js-base64": "^3.7.7",
"npm-run-all": "^4.1.5",
"prettier": "^3.5.3",
"publint": "^0.3.12",
"tsup": "^8.4.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.30.1",
"vitest": "3.0.9",
"wrangler": "^4.27.0"
},
"dependencies": {
"lib0": "^0.2.104",
"y-protocols": "^1.0.6",
"yjs": "^13.6.24"
},
"peerDependencies": {
"hono": ">=4.3"
},
"packageManager": "pnpm@10.8.1"
}