-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1 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
{
"name": "yeeql",
"version": "1.0.7",
"description": "A SQL-like interface around Y.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"license": "MIT",
"scripts": {
"test": "node --expose-gc node_modules/.bin/vitest",
"build": "tsc",
"lint": "eslint --fix \"./**/*.{ts, tsx, js, cjs}\""
},
"dependencies": {
"base256-encoding": "^2.0.2",
"json-stable-stringify": "^1.0.2"
},
"devDependencies": {
"@types/json-stable-stringify": "^1.0.34",
"@types/react": "^18.2.18",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.33.1",
"react": "^18.2.0",
"typescript": "^4.6.4",
"vitest": "^0.34.1",
"yjs": "^13.6.7"
},
"peerDependencies": {
"react": "^18.0.0",
"yjs": "^13.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/lukebrody/yeeql.git"
}
}