-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.79 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
{
"name": "shopify-webhook-schemas",
"version": "0.1.5",
"description": "",
"main": "dist/src/index.js",
"type": "commonjs",
"files": [
"Readme.md",
"dist/src/*",
"metadatas/**/*",
"schemas/**/*"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "node --import tsx --test test/*.test.ts",
"lint": "pnpm run lint:prettier && pnpm run lint:eslint",
"publint": "publint && attw --pack",
"lint:prettier": "prettier --check \"{test,src}/**/*.{js,ts}\"",
"lint:eslint": "eslint --quiet --ext ts,tsx test src",
"lint:fix": "prettier --write --check \"{test,src}/**/*.{js,ts}\"; eslint --ext ts --fix test src",
"build": "rm -rf dist && tsc",
"watch": "rm -rf dist && tsc --watch --preserveWatchOutput",
"prepublishOnly": "pnpm run build",
"prerelease": "gitpkg publish",
"clean": "rm -rf *.0x *-v8.log",
"x": "tsx"
},
"keywords": [],
"author": "Harry Brundage",
"license": "MIT",
"devDependencies": {
"@arethetypeswrong/cli": "^0.15.3",
"@cloudflare/json-schema-walker": "^0.1.1",
"@gadgetinc/eslint-config": "^0.6.1",
"@gadgetinc/prettier-config": "^0.4.0",
"@jsonhero/json-infer-types": "^1.2.11",
"@jsonhero/schema-infer": "^0.1.5",
"@opentelemetry/api": "^1.8.0",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.7",
"@types/traverse": "^0.6.36",
"chalk": "^5.3.0",
"cheerio": "1.0.0-rc.12",
"eslint": "^8.52.0",
"fs-extra": "^11.2.0",
"gitpkg": "1.0.0-beta.4",
"globby": "^14.0.1",
"got": "^11.8.6",
"inflected": "^2.1.0",
"lodash": "^4.17.21",
"prettier": "^2.8.8",
"publint": "^0.2.7",
"traverse": "^0.6.9",
"tsx": "^4.7.3",
"typescript": "^5.4.5"
},
"dependencies": {
"fast-glob": "^3.3.2"
}
}