-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.05 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
{
"version": "1.1.0",
"name": "parcel-transformer-liquid",
"author": "Vadzim Tsupryk <vadzim@vadzim.me>",
"module": "dist/parcel-transformer-liquid.esm.js",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"keywords": [
"parcel",
"parcel-transformer",
"liquid",
"shopify"
],
"homepage": "https://github.com/meecrobe/parcel-transformer-liquid#readme",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10",
"parcel": "^2.8.2"
},
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"lint": "tsdx lint",
"format": "yarn prettier src/**/*.ts --write",
"prepare": "tsdx build"
},
"peerDependencies": {
"parcel": "^2.8.2"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint && yarn format"
}
},
"devDependencies": {
"@parcel/config-default": "^2.8.2",
"husky": "^8.0.3",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4"
},
"dependencies": {
"@parcel/plugin": "^2.8.2",
"liquidjs": "^10.4.0"
}
}