-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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
43
44
45
46
47
48
49
50
51
52
53
{
"name": "@doomcommerce/shopify-search",
"version": "1.3.1",
"description": "Shopify search query builder",
"main": "./Build/Source/mod.js",
"types": "./Build/Source/mod.d.ts",
"exports": {
".": {
"types": "./Build/Source/mod.d.ts",
"default": "./Build/Source/mod.js"
}
},
"scripts": {
"build": "tsc",
"dev": "ts-node-dev --respawn Test/App.ts"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DoomCommerce/Shopify-Search.git"
},
"bugs": {
"url": "https://github.com/DoomCommerce/Shopify-Search/issues"
},
"homepage": "https://github.com/DoomCommerce/Shopify-Search",
"author": "DoomCommerce",
"license": "AGPLv3",
"keywords": [
"shopify",
"node",
"graphql",
"search",
"query",
"builder"
],
"devDependencies": {
"@types/node": "^20.5.9",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"files": [
"**/*.d.ts",
"**/*.d.ts.map",
"**/*.js",
"**/*.js.map",
"!node_modules"
],
"dependencies": {
"tslib": "^2.6.2"
}
}