-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.16 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
{
"name": "@glimmer/dom-change-list",
"type": "module",
"version": "0.85.11",
"repository": "https://github.com/glimmerjs/glimmer-vm/tree/master/packages/@glimmer/dom-change-list",
"main": "index.ts",
"types": "index.ts",
"publishConfig": {
"access": "public",
"types": "dist/dev/index.d.ts",
"exports": {
".": {
"types": "./dist/dev/index.d.ts",
"development": {
"require": "./dist/dev/index.cjs",
"import": "./dist/dev/index.js"
},
"require": "./dist/dev/index.cjs",
"import": "./dist/prod/index.js"
}
},
"main": null,
"module": null
},
"files": [
"dist"
],
"dependencies": {
"@glimmer/util": "workspace:^",
"@glimmer/interfaces": "workspace:^"
},
"devDependencies": {
"@glimmer-workspace/build-support": "workspace:^",
"@glimmer/local-debug-flags": "workspace:^",
"eslint": "^8.52.0",
"publint": "^0.2.5",
"rollup": "^3.21.6",
"typescript": "*"
},
"scripts": {
"test:lint": "eslint .",
"test:types": "tsc --noEmit -p ../tsconfig.json",
"build": "rollup -c rollup.config.mjs",
"test:publint": "publint"
}
}