-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.08 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
{
"name": "shopify-shepherd",
"version": "0.2.2",
"description": "unofficial shopify sdk for frontend websites",
"license": "MIT",
"author": "Chase Moskal <[email protected]>",
"type": "module",
"main": "x/index.js",
"files": [
"s",
"x"
],
"scripts": {
"build": "run-s clean && run-p typescript importmap",
"clean": "rm -rf x && mkdir x",
"typescript": "tsc",
"importmap": "importly --host=node_modules < package-lock.json > x/importmap.json",
"start": "tsc -w",
"test": "cynic node x/tests.test.js",
"test-watch": "chokidar 'x/**/*.js' -c 'npm test'"
},
"devDependencies": {
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"cynic": "^0.2.1",
"es-module-shims": "^1.8.2",
"importly": "^0.2.3",
"npm-run-all": "^4.1.5",
"typescript": "^5.3.2"
},
"keywords": [
"shopify",
"sdk",
"graphql"
],
"homepage": "https://github.com/chase-moskal/shopify-shepherd#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/chase-moskal/shopify-shepherd.git"
},
"bugs": {
"url": "https://github.com/chase-moskal/shopify-shepherd/issues"
}
}