-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
168 lines (168 loc) · 6.68 KB
/
package.json
File metadata and controls
168 lines (168 loc) · 6.68 KB
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
{
"name": "@lineal-viz/lineal",
"version": "0.5.1",
"description": "A data visualization toolkit for Ember.",
"keywords": [
"ember-addon"
],
"repository": {
"type": "git",
"url": "https://github.com/hashicorp/lineal"
},
"license": "MPL-2.0",
"author": "",
"imports": {
"#src/*": "./src/*",
"#tests/*": "./tests/*"
},
"exports": {
".": {
"types": "./declarations/index.d.ts",
"default": "./dist/index.js"
},
"./addon-main.js": "./addon-main.cjs",
"./*.css": "./dist/*.css",
"./*": {
"types": "./declarations/*.d.ts",
"default": "./dist/*.js"
}
},
"files": [
"addon-main.cjs",
"declarations",
"dist"
],
"scripts": {
"build": "rollup --config",
"format": "prettier . --cache --write",
"lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
"lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm run format",
"lint:format": "prettier . --cache --check",
"lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
"lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
"lint:js": "eslint . --cache",
"lint:js:fix": "eslint . --fix",
"lint:types": "ember-tsc --noEmit",
"prepack": "rollup --config",
"prepare": "rollup --config",
"start": "vite dev",
"test": "vite build --mode=development --out-dir dist-tests && testem --file testem.cjs ci --port 0"
},
"dependencies": {
"@embroider/addon-shim": "^1.10.2",
"d3-array": "^3.2.4",
"d3-scale": "^4.0.2",
"d3-shape": "^3.2.0",
"decorator-transforms": "^2.3.1",
"ember-modifier": "^4.3.0",
"ember-resize-modifier": "^1.1.0",
"ember-truth-helpers": "^5.0.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@babel/plugin-transform-typescript": "^7.28.6",
"@babel/runtime": "^7.28.6",
"@ember/app-tsconfig": "^2.0.0",
"@ember/library-tsconfig": "^2.0.0",
"@ember/test-helpers": "^5.4.1",
"@ember/test-waiters": "^4.1.1",
"@embroider/addon-dev": "^8.3.0",
"@embroider/compat": "^4.1.13",
"@embroider/core": "^4.4.3",
"@embroider/macros": "^1.19.7",
"@embroider/vite": "^1.5.2",
"@eslint/js": "^9.39.2",
"@glimmer/component": "^2.0.0",
"@glint/ember-tsc": "^1.1.1",
"@glint/template": "^1.7.4",
"@glint/tsserver-plugin": "^2.1.0",
"@nullvoxpopuli/ember-composable-helpers": "^5.3.0",
"@rollup/plugin-babel": "^6.1.0",
"@types/d3-array": "^3.2.2",
"@types/d3-scale": "^4.0.9",
"@types/d3-shape": "^3.1.8",
"@types/qunit": "^2.19.13",
"@types/sinon": "^21.0.0",
"babel-plugin-ember-template-compilation": "^4.0.0",
"concurrently": "^9.2.1",
"ember-page-title": "^9.0.3",
"ember-qunit": "^9.0.4",
"ember-source": "^6.11.0",
"ember-strict-application-resolver": "^0.1.1",
"ember-template-lint": "^7.9.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-ember": "^12.7.5",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.24.0",
"globals": "^17.3.0",
"prettier": "^3.8.1",
"prettier-plugin-ember-template-tag": "^2.1.3",
"qunit": "^2.25.0",
"qunit-dom": "^3.5.0",
"release-plan": "^0.17.4",
"rollup": "^4.57.1",
"sinon": "^21.0.1",
"testem": "^3.17.0",
"typescript": "~5.9.3",
"typescript-eslint": "^8.56.0",
"vite": "^7.3.1"
},
"packageManager": "pnpm@10.30.1+sha512.3590e550d5384caa39bd5c7c739f72270234b2f6059e13018f975c313b1eb9fefcc09714048765d4d9efe961382c312e624572c0420762bdc5d5940cdf9be73a",
"engines": {
"node": ">= 24",
"pnpm": ">= 10"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.cjs",
"app-js": {
"./components/arc.js": "./dist/_app_/components/arc.js",
"./components/arcs.js": "./dist/_app_/components/arcs.js",
"./components/area.js": "./dist/_app_/components/area.js",
"./components/axis.js": "./dist/_app_/components/axis.js",
"./components/bars.js": "./dist/_app_/components/bars.js",
"./components/fluid.js": "./dist/_app_/components/fluid.js",
"./components/grid-lines.js": "./dist/_app_/components/grid-lines.js",
"./components/h-bars.js": "./dist/_app_/components/h-bars.js",
"./components/line.js": "./dist/_app_/components/line.js",
"./components/points.js": "./dist/_app_/components/points.js",
"./components/v-bars.js": "./dist/_app_/components/v-bars.js",
"./helpers/css-range.js": "./dist/_app_/helpers/css-range.js",
"./helpers/scale-band.js": "./dist/_app_/helpers/scale-band.js",
"./helpers/scale-diverging-log.js": "./dist/_app_/helpers/scale-diverging-log.js",
"./helpers/scale-diverging-pow.js": "./dist/_app_/helpers/scale-diverging-pow.js",
"./helpers/scale-diverging-sqrt.js": "./dist/_app_/helpers/scale-diverging-sqrt.js",
"./helpers/scale-diverging-symlog.js": "./dist/_app_/helpers/scale-diverging-symlog.js",
"./helpers/scale-diverging.js": "./dist/_app_/helpers/scale-diverging.js",
"./helpers/scale-fn-compute.js": "./dist/_app_/helpers/scale-fn-compute.js",
"./helpers/scale-fn-derive.js": "./dist/_app_/helpers/scale-fn-derive.js",
"./helpers/scale-identity.js": "./dist/_app_/helpers/scale-identity.js",
"./helpers/scale-linear.js": "./dist/_app_/helpers/scale-linear.js",
"./helpers/scale-log.js": "./dist/_app_/helpers/scale-log.js",
"./helpers/scale-ordinal.js": "./dist/_app_/helpers/scale-ordinal.js",
"./helpers/scale-point.js": "./dist/_app_/helpers/scale-point.js",
"./helpers/scale-pow.js": "./dist/_app_/helpers/scale-pow.js",
"./helpers/scale-quantile.js": "./dist/_app_/helpers/scale-quantile.js",
"./helpers/scale-quantize.js": "./dist/_app_/helpers/scale-quantize.js",
"./helpers/scale-radial.js": "./dist/_app_/helpers/scale-radial.js",
"./helpers/scale-sqrt.js": "./dist/_app_/helpers/scale-sqrt.js",
"./helpers/scale-symlog.js": "./dist/_app_/helpers/scale-symlog.js",
"./helpers/scale-threshold.js": "./dist/_app_/helpers/scale-threshold.js",
"./helpers/scale-time.js": "./dist/_app_/helpers/scale-time.js",
"./helpers/scale-utc.js": "./dist/_app_/helpers/scale-utc.js",
"./helpers/stack-h.js": "./dist/_app_/helpers/stack-h.js",
"./helpers/stack-v.js": "./dist/_app_/helpers/stack-v.js",
"./helpers/stack.js": "./dist/_app_/helpers/stack.js",
"./modifiers/interactor-cartesian-horizontal.js": "./dist/_app_/modifiers/interactor-cartesian-horizontal.js"
}
}
}