-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1018 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 1018 Bytes
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
{
"name": "glimmer-local-class-transform",
"version": "1.0.0",
"description": "Support for `local-class` attributes in Glimmer templates",
"license": "MIT",
"author": "Dan Freeman",
"homepage": "https://github.com/salsify/ember-css-modules/tree/master/packages/glimmer-local-class-transform",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/salsify/ember-css-modules.git",
"directory": "packages/glimmer-local-class-transform"
},
"type": "module",
"exports": {
".": "./dist/transform.js",
"./-runtime": "./dist/runtime.js"
},
"scripts": {
"prepare": "tsc --project tsconfig.build.json",
"test": "vitest run"
},
"files": [
"README.md",
"dist/**/!(*.test.*)"
],
"devDependencies": {
"@glimmer/syntax": "^0.84.3",
"babel-plugin-ember-template-compilation": "~2.3.0",
"eslint": "^9.26.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
},
"volta": {
"extends": "../../package.json"
}
}