forked from unshopable/melter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.35 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
{
"name": "@unshopable/melter",
"version": "0.1.0-alpha.43",
"description": "Shopify Theme build tool and plugin manager which lets you create custom directory structures and add custom file transformations to melt anything into Liquid 🫠",
"author": "",
"keywords": [
"plugin-manager",
"liquid",
"shopify",
"build-tool",
"shopify-theme",
"development-tool"
],
"license": "MIT",
"repository": "unshopable/melter",
"homepage": "https://github.com/unshopable/melter",
"bugs": "https://github.com/unshopable/melter/issues",
"private": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"dev": "npx nodemon",
"build": "tsup",
"prepublishOnly": "npm run build"
},
"dependencies": {
"chokidar": "^3.5.3",
"fast-glob": "^3.3.0",
"fs-extra": "^11.1.1",
"just-safe-get": "^4.2.0",
"just-safe-set": "^4.2.1",
"tapable": "^2.2.1"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.2.3",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"tslib": "^2.5.2",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
}
}