-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
67 lines (67 loc) · 2.23 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
{
"name": "@shopify/codemirror-language-client",
"version": "0.7.2",
"description": "A Language Client for CodeMirror",
"author": "CP Clermont <[email protected]>",
"homepage": "https://github.com/Shopify/theme-tools/tree/main/packages/codemirror-language-client#readme",
"repository": {
"type": "git",
"url": "https://github.com/shopify/theme-tools.git",
"directory": "packages/codemirror-language-client"
},
"bugs": {
"url": "https://github.com/shopify/theme-tools/issues"
},
"license": "MIT",
"main": "./dist/umd/index.js",
"typings": "./dist/umd/index.js",
"module": "./dist/esm/index.js",
"exports": {
"import": "./dist/esm/index.js",
"require": "./dist/umd/index.js"
},
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "yarn build:esm && yarn build:umd",
"build:ci": "yarn build",
"build:ts": "true",
"build:esm": "tsc -b tsconfig.json",
"build:umd": "tsc -b tsconfig.umd.json",
"build:playground": "tsc -b playground/tsconfig.json",
"dev": "yarn dev:client",
"dev:client": "yarn build:esm --watch",
"dev:playground": "webpack serve -c ./playground/webpack.config.js",
"format": "prettier --write \"packages/*/src/**/*.ts\"",
"format:check": "prettier --check --ignore-unknown \"packages/*/src/**/*.ts\"",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"vscode-languageserver-protocol": "^3.17.3",
"vscode-languageserver-textdocument": "^1.0.8"
},
"devDependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/lang-json": "^6.0.1",
"@codemirror/lint": "^6.2.0",
"@codemirror/state": "^6.3.0",
"@codemirror/theme-one-dark": "^6.1.2",
"@codemirror/view": "^6.9.2",
"@replit/codemirror-vim": "^6.2.1",
"@shopify/theme-check-docs-updater": "^3.6.1",
"@shopify/theme-language-server-browser": "^2.5.0",
"@shopify/lang-jsonc": "^1.0.0",
"@types/markdown-it": "^13.0.4",
"codemirror": "^6.0.1",
"markdown-it": "^13.0.2"
},
"peerDependencies": {
"@codemirror/autocomplete": "^6.0.0",
"@codemirror/lint": "^6.2.0",
"@codemirror/state": "^6.3.0",
"@codemirror/view": "^6.9.2"
}
}