-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathpackage.json
56 lines (56 loc) · 1.36 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
{
"name": "@glimmer-workspace/benchmark-env",
"private": true,
"version": "0.92.0",
"type": "module",
"exports": "./index.ts",
"repo-meta": {
"strictness": "loose",
"built": true
},
"publishConfig": {
"exports": {
".": {
"development": {
"types": "./dist/dev/index.d.ts",
"default": "./dist/dev/index.js"
},
"default": {
"types": "./dist/prod/index.d.ts",
"default": "./dist/prod/index.js"
}
}
},
"types": "dist/dev/index.d.ts"
},
"files": [
"dist"
],
"scripts": {
"prepack": "rollup -c rollup.config.mjs",
"test:publint": "publint"
},
"dependencies": {
"@glimmer/global-context": "workspace:*",
"@glimmer/manager": "workspace:*",
"@glimmer/opcode-compiler": "workspace:*",
"@glimmer/program": "workspace:*",
"@glimmer/reference": "workspace:*",
"@glimmer/runtime": "workspace:*",
"@glimmer/util": "workspace:*",
"@glimmer/validator": "workspace:*"
},
"devDependencies": {
"@glimmer-workspace/build-support": "workspace:*",
"@glimmer-workspace/env": "workspace:*",
"@glimmer/debug-util": "workspace:*",
"@glimmer/interfaces": "workspace:*",
"eslint": "^9.20.1",
"publint": "^0.3.2",
"rollup": "^4.34.8",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=20.9.0"
}
}