-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
149 lines (149 loc) · 4.58 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "ember-vite-hmr",
"version": "2.0.1",
"keywords": [
"ember-addon"
],
"private": false,
"description": "provides hmr support for ember apps",
"repository": {
"type": "git",
"url": "https://github.com/patricklx/ember-vite-hmr"
},
"license": "MIT",
"author": "Patrick Pircher",
"main": "dist/lib/hmr.js",
"files": [
"addon-main.cjs",
"dist"
],
"scripts": {
"build": "concurrently 'pnpm:build:*'",
"build:js": "rollup --config",
"build:lib": "tsc --p tsconfig.lib.json",
"watch:lib": "tsc --p tsconfig.lib.json --watch",
"build:types": "glint --declaration",
"lint": "concurrently 'npm:lint:*(!fix)' --names 'lint:'",
"lint:fix": "concurrently 'npm:lint:*:fix' --names 'fix:'",
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:prettier": "prettier --check .",
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
"lint:js:fix": "eslint . --fix",
"lint:prettier:fix": "prettier --w .",
"lint:types": "glint",
"start": "concurrently 'npm:start:*'",
"start:js": "rollup --config --watch --no-watch.clearScreen",
"start:types": "glint --declaration --watch",
"test": "vitest run",
"prepack": "pnpm build || echo 'its okay'"
},
"dependencies": {
"@babel/core": "^7.23.2",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.24.0",
"@embroider/addon-shim": "^1.8.9",
"@glimmer/syntax": "^0.92.3",
"@types/supports-color": "^8.1.0",
"babel-import-util": "^3.0.0",
"babel-loader": "^9.1.3",
"babel-preset-env": "^1.7.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@babel/eslint-parser": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@babel/plugin-transform-class-static-block": "^7.20.0",
"@babel/runtime": "^7.17.0",
"@embroider/addon-dev": "^7.1.1",
"@embroider/compat": "^3.4.6",
"@embroider/core": "^3.4.6",
"@glint/core": "^1.2.0",
"@glint/environment-ember-loose": "^1.2.0",
"@glint/environment-ember-template-imports": "^1.2.0",
"@glint/template": "^1.2.0",
"@rollup/plugin-babel": "^6.0.3",
"@tsconfig/ember": "^3.0.8",
"@types/babel__core": "^7.20.3",
"@types/babel__traverse": "^7.20.3",
"@types/csso": "^5.0.4",
"@types/debug": "^4.1.5",
"@types/fs-extra": "^11.0.4",
"@types/lodash": "^4.14.170",
"@types/mini-css-extract-plugin": "^2.5.1",
"@types/node": "^22.5.5",
"@types/rsvp": "^4.0.9",
"@types/semver": "^7.3.6",
"assert-never": "^1.2.1",
"babel-import-util": "^3.0.0",
"babel-plugin-ember-template-compilation": "^2.3.0",
"concurrently": "^9.0.1",
"content-tag": "^2.0.1",
"ember-cli-htmlbars": "^6.3.0",
"ember-resolver": "^13.0.1",
"ember-source": "^5.10.1",
"@glimmer/component": "^1.1.2",
"ember-template-lint": "^6.0.0",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ember": "^12.2.0",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-prettier": "^5.0.0",
"execa": "^9.3.1",
"fs-extra": "^11.2.0",
"playwright-chromium": "^1.47.0",
"prettier": "^3.0.3",
"prettier-plugin-ember-template-tag": "^2.0.2",
"puppeteer-chromium-resolver": "^23.0.0",
"rollup": "^4.18.1",
"source-map-url": "^0.4.1",
"strip-ansi": "^7.1.0",
"style-loader": "^4.0.0",
"supports-color": "^9.4.0",
"terser": "^5.7.0",
"thread-loader": "^4.0.2",
"typescript": "^5.1.6",
"vite": "^6.1.0",
"vitest": "^2.0.5"
},
"peerDependencies": {
"@embroider/compat": "*",
"babel-import-util": "^3.0.0",
"babel-plugin-ember-template-compilation": "^2.2.2"
},
"engines": {
"node": "12.* || 14.* || >= 16"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.cjs",
"app-js": {
"./instance-initializers/setup-hmr-manager.js": "./dist/_app_/instance-initializers/setup-hmr-manager.js",
"./instance-initializers/vite-hot-reload.js": "./dist/_app_/instance-initializers/vite-hot-reload.js",
"./services/vite-hot-reload.js": "./dist/_app_/services/vite-hot-reload.js"
}
},
"exports": {
".": {
"default": "./dist/lib/hmr.js"
},
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.js"
},
"./addon-main.js": "./addon-main.cjs"
},
"typesVersions": {
"*": {
"*": [
"declarations/*"
]
}
}
}