-
Notifications
You must be signed in to change notification settings - Fork 190
/
Copy pathpackage.json
47 lines (47 loc) · 1.07 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
{
"name": "@glimmer/wire-format",
"version": "0.94.7",
"license": "MIT",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/glimmerjs/glimmer-vm.git",
"directory": "packages/@glimmer/wire-format"
},
"type": "module",
"exports": "./index.ts",
"publishConfig": {
"access": "public",
"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/interfaces": "workspace:*"
},
"devDependencies": {
"@glimmer-workspace/build-support": "workspace:*",
"@glimmer-workspace/env": "workspace:*",
"eslint": "^9.20.1",
"publint": "^0.3.2",
"rollup": "^4.34.8",
"typescript": "^5.7.3"
}
}