This repository has been archived by the owner on May 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
81 lines (81 loc) · 2.39 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
{
"name": "@prisma/text-editors",
"version": "0.0.22",
"repository": {
"type": "git",
"url": "git://github.com/prisma/text-editors.git"
},
"license": "Apache-2.0",
"scripts": {
"prepare": "yarn build:types",
"dev": "vite",
"dev:api": "vercel dev --listen 3001",
"test": "playwright test",
"test:watch": "chokidar \"**/*.ts\" -c \"clear && yarn test --timeout 0\" --silent --initial",
"build": "yarn build:types && yarn build:lib",
"build:types": "zx ./scripts/build-types.mjs",
"build:lib": "zx ./scripts/build-lib.mjs",
"format": "prettier -w . --ignore-path=.gitignore",
"format:check": "prettier -c . --ignore-path=.gitignore",
"prepublishOnly": "yarn build"
},
"files": [
"dist"
],
"main": "./dist/editors.cjs.js",
"module": "./dist/editors.es.js",
"types": "./dist/types/lib.d.ts",
"dependencies": {},
"devDependencies": {
"@codemirror/autocomplete": "0.19.3",
"@codemirror/closebrackets": "0.19.0",
"@codemirror/commands": "0.19.3",
"@codemirror/comment": "0.19.0",
"@codemirror/fold": "0.19.0",
"@codemirror/gutter": "0.19.1",
"@codemirror/highlight": "0.19.4",
"@codemirror/history": "0.19.0",
"@codemirror/lang-javascript": "0.19.1",
"@codemirror/lang-json": "0.19.1",
"@codemirror/lang-sql": "0.19.3",
"@codemirror/language": "0.19.2",
"@codemirror/lint": "0.19.0",
"@codemirror/matchbrackets": "0.19.1",
"@codemirror/rangeset": "0.19.1",
"@codemirror/state": "0.19.1",
"@codemirror/theme-one-dark": "0.19.0",
"@codemirror/view": "0.19.6",
"@fontsource/jetbrains-mono": "4.5.0",
"@playwright/test": "1.17.2",
"@types/lodash": "4.14.178",
"@types/node": "17.0.8",
"@types/react": "17.0.38",
"@types/react-dom": "17.0.11",
"@types/relaxed-json": "1.0.1",
"@typescript/vfs": "1.3.5",
"@vitejs/plugin-react-refresh": "1.3.6",
"chokidar-cli": "3.0.0",
"fast-glob": "3.2.10",
"localforage": "1.10.0",
"lodash": "4.17.21",
"prettier": "2.5.1",
"react": "17.0.2",
"react-dom": "17.0.2",
"relaxed-json": "1.0.3",
"typescript": "4.5.4",
"vercel": "23.1.2",
"vite": "2.7.10",
"zx": "4.2.0"
},
"peerDependencies": {
"react": "17.0.0",
"react-dom": "17.0.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": true,
"singleQuote": false,
"arrowParens": "avoid"
}
}