-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
45 lines (45 loc) · 1.21 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
{
"name": "@shopify/theme-check-node",
"version": "3.6.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "CP Clermont <[email protected]>",
"homepage": "https://github.com/Shopify/theme-tools/tree/main/packages/theme-check-node#readme",
"repository": {
"type": "git",
"url": "https://github.com/shopify/theme-tools.git",
"directory": "packages/theme-check-node"
},
"bugs": {
"url": "https://github.com/shopify/theme-tools/issues"
},
"license": "MIT",
"publishConfig": {
"access": "public",
"@shopify:registry": "https://registry.npmjs.org"
},
"files": [
"configs/*",
"dist/**/*.js",
"dist/**/*.ts"
],
"scripts": {
"build": "yarn build:ts",
"build:ci": "yarn build",
"build:ts": "tsc -b tsconfig.build.json",
"postbuild:ts": "yarn generate-factory-configs",
"generate-factory-configs": "node scripts/generate-factory-configs",
"test": "vitest",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@shopify/theme-check-common": "3.6.1",
"@shopify/theme-check-docs-updater": "3.6.1",
"glob": "^8.0.3",
"vscode-uri": "^3.0.7",
"yaml": "^2.3.0"
},
"devDependencies": {
"@types/glob": "^8.0.0"
}
}