|
2 | 2 | "name": "glimmer-engine",
|
3 | 3 | "version": "0.85.13",
|
4 | 4 | "private": true,
|
| 5 | + "license": "MIT", |
5 | 6 | "description": "Glimmer compiles Handlebars templates into document fragments rather than string buffers",
|
6 | 7 | "repository": {
|
7 | 8 | "type": "git",
|
8 | 9 | "url": "https://github.com/glimmerjs/glimmer-vm.git"
|
9 | 10 | },
|
10 |
| - "license": "MIT", |
11 | 11 | "author": "Tilde, Inc.",
|
| 12 | + "publishConfig": { |
| 13 | + "registry": "https://registry.npmjs.org" |
| 14 | + }, |
12 | 15 | "scripts": {
|
13 |
| - "clean": "node ./bin/clean.mjs", |
14 | 16 | "benchmark:build": "node benchmark/bin/build.js",
|
15 | 17 | "benchmark:control": "node benchmark/bin/control.js",
|
16 | 18 | "benchmark:experiment": "node benchmark/bin/experiment.js",
|
|
20 | 22 | "build": "dotenv -- turbo build",
|
21 | 23 | "build:control": "rollup -c rollup.config.mjs",
|
22 | 24 | "build:flags": "RETAIN_FLAGS=true ember build --env production --suppress-sizes",
|
| 25 | + "clean": "node ./bin/clean.mjs", |
23 | 26 | "link:all": "esyes ./bin/link-all.mts",
|
24 | 27 | "lint": "npm-run-all lint:*",
|
25 |
| - "lint:format": "prettier -c .", |
26 | 28 | "lint:files": "turbo lint",
|
| 29 | + "lint:format": "prettier -c .", |
27 | 30 | "lint:types": "tsc -b",
|
28 | 31 | "lintfix": "pnpm turbo test:lint -- --fix && prettier -w .",
|
29 | 32 | "start": "ember serve --port=7357",
|
30 | 33 | "test": "node bin/run-tests.mjs",
|
| 34 | + "test:babel-plugins": "yarn workspace @glimmer/vm-babel-plugins test", |
31 | 35 | "test:browserstack": "ember test --test-port=7774 --host 127.0.0.1 --config-file=testem-browserstack.js",
|
32 | 36 | "test:node": "node bin/run-node-tests.mjs",
|
33 |
| - "test:babel-plugins": "yarn workspace @glimmer/vm-babel-plugins test", |
34 | 37 | "test:smoke": "SMOKE_TESTS=true ember test",
|
35 | 38 | "test:types": "node bin/run-types-tests.mjs",
|
36 | 39 | "unlink:all": "esyes ./bin/unlink-all.mts"
|
37 | 40 | },
|
38 | 41 | "pnpm": {
|
39 | 42 | "overrides": {
|
40 |
| - "typescript": "$typescript", |
41 | 43 | "@rollup/pluginutils": "^5.0.2",
|
42 |
| - "@types/node": "$@types/node" |
| 44 | + "@types/node": "$@types/node", |
| 45 | + "typescript": "$typescript" |
| 46 | + }, |
| 47 | + "patchedDependencies": { |
| 48 | + "@release-it-plugins/[email protected]": "patches/@[email protected]" |
43 | 49 | },
|
44 | 50 | "peerDependencyRules": {
|
| 51 | + "allowAny": [ |
| 52 | + "vite-plugin-babel", |
| 53 | + "vite" |
| 54 | + ], |
45 | 55 | "allowedVersions": {
|
46 |
| - "typescript": "5", |
47 | 56 | "@rollup/pluginutils": "5",
|
48 |
| - "rollup": "3" |
| 57 | + "rollup": "3", |
| 58 | + "typescript": "5" |
49 | 59 | }
|
50 |
| - }, |
51 |
| - "patchedDependencies": { |
52 |
| - "@release-it-plugins/[email protected]": "patches/@[email protected]" |
53 | 60 | }
|
54 | 61 | },
|
55 | 62 | "devDependencies": {
|
|
118 | 125 | "ts-node": "^10.9.1",
|
119 | 126 | "turbo": "^1.9.3",
|
120 | 127 | "typescript": "^5.0.4",
|
121 |
| - "vite": "^4.3.9", |
| 128 | + "vite": "^5.0.10", |
122 | 129 | "xo": "^0.54.2"
|
123 | 130 | },
|
124 |
| - "publishConfig": { |
125 |
| - "registry": "https://registry.npmjs.org" |
126 |
| - }, |
127 | 131 | "release-it": {
|
128 | 132 | "plugins": {
|
129 | 133 | "@release-it-plugins/workspaces": {
|
|
0 commit comments