-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.74 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "vite-plugin-shopify-import-maps",
"version": "0.5.4",
"description": "Enhances Shopify theme development by adding support for import-maps",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/slavamak/vite-plugin-shopify-import-maps.git"
},
"bugs": {
"url": "https://github.com/slavamak/vite-plugin-shopify-import-maps/issues"
},
"homepage": "https://github.com/slavamak/vite-plugin-shopify-import-maps#readme",
"author": "Slava Maksimov <hello@slavamak.com>",
"keywords": [
"vite",
"plugin",
"shopify",
"import-maps",
"shopify-import-maps"
],
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint --ext .ts .",
"prepublish": "tsup",
"release": "bumpp && pnpm publish"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"standard-with-typescript"
],
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module",
"project": "./tsconfig.json"
},
"ignorePatterns": [
"dist"
]
},
"packageManager": "pnpm@9.0.1",
"tsup": {
"entry": [
"./src/index.ts"
],
"format": "esm",
"dts": true,
"clean": true
},
"types": "./dist/index.d.ts",
"devDependencies": {
"@types/node": "^20.5.9",
"bumpp": "^9.2.0",
"es-module-lexer": "^1.3.1",
"eslint": "^8.48.0",
"eslint-config-standard-with-typescript": "^39.0.0",
"magic-string": "^0.30.5",
"tsup": "^7.2.0",
"typescript": "^5.2.2",
"vite": "^5.0.10"
}
}