-
Notifications
You must be signed in to change notification settings - Fork 69
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.16 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.16 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
{
"name": "@shopify/theme-check-common",
"version": "3.24.0",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "CP Clermont <cp.clermont@shopify.com>",
"homepage": "https://github.com/Shopify/theme-tools/tree/main/packages/theme-check-common#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Shopify/theme-tools.git",
"directory": "packages/theme-check-common"
},
"bugs": {
"url": "https://github.com/Shopify/theme-tools/issues"
},
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "yarn build:ts",
"build:ci": "yarn build",
"build:ts": "tsc -b tsconfig.build.json",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@shopify/liquid-html-parser": "2.9.2",
"cross-fetch": "^4.0.0",
"jsonc-parser": "^3.2.0",
"line-column": "^1.0.2",
"lodash": "^4.17.23",
"minimatch": "^10.2.1",
"vscode-json-languageservice": "^5.3.10",
"vscode-uri": "^3.0.7"
},
"devDependencies": {
"@types/line-column": "^1.0.0",
"@types/lodash": "^4.17.20"
}
}