-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
123 lines (123 loc) · 3.9 KB
/
Copy pathpackage.json
File metadata and controls
123 lines (123 loc) · 3.9 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
{
"name": "ember-cli-showdown",
"version": "10.0.0",
"description": "Ember component to render markdown into HTML.",
"keywords": [
"ember-addon",
"showdown",
"markdown",
"component",
"emberjs"
],
"repository": "https://github.com/empress/ember-cli-showdown",
"license": "MIT",
"author": "",
"exports": {
".": {
"ember-addon-development-ember-cli-showdown": "./src/index.js",
"default": "./dist/index.js"
},
"./addon-main.js": "./addon-main.cjs",
"./*": {
"default": "./dist/*.js"
}
},
"directories": {
"doc": "doc",
"test": "tests"
},
"files": [
"addon-main.cjs",
"declarations",
"dist",
"src"
],
"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:publish": "pnpm build && publint run --level error",
"prepack": "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.8.9",
"decorator-transforms": "^2.2.2",
"showdown": "^2.1.0"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/eslint-parser": "^7.29.7",
"@babel/plugin-proposal-decorators": "^7.23.2",
"@ember/optional-features": "^2.0.0",
"@ember/test-helpers": "^5.2.1",
"@embroider/addon-dev": "^8.3.0",
"@embroider/compat": "^4.1.0",
"@embroider/core": "^4.1.0",
"@embroider/legacy-inspector-support": "^0.1.3",
"@embroider/macros": "^1.20.4",
"@embroider/test-setup": "^3.0.2",
"@embroider/vite": "^1.1.5",
"@eslint/js": "^10.0.1",
"@glimmer/component": "^2.0.0",
"@glimmer/tracking": "^1.1.2",
"@rollup/plugin-babel": "^6.0.4",
"auto-changelog": "github:mansona/auto-changelog#epic",
"babel-plugin-ember-template-compilation": "^4.0.0",
"concurrently": "^8.2.2",
"ember-cli": "~5.4.1",
"ember-load-initializers": "^2.1.2",
"ember-page-title": "^8.0.0",
"ember-qunit": "^9.0.2",
"ember-resolver": "^11.0.1",
"ember-route-template": "^1.0.3",
"ember-source": "~6.12.0",
"ember-source-channel-url": "^3.0.0",
"ember-strict-application-resolver": "^0.1.1",
"ember-template-lint": "^7.9.3",
"ember-try": "^3.0.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-ember": "^13.3.2",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.2.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-qunit": "^8.0.1",
"globals": "^17.7.0",
"lint-to-the-future": "^2.0.0",
"lint-to-the-future-ember-template": "^1.2.0",
"lint-to-the-future-eslint": "^2.0.1",
"prettier": "^3.8.4",
"prettier-plugin-ember-template-tag": "^2.1.6",
"publint": "^0.3.21",
"qunit": "^2.20.0",
"qunit-dom": "^3.5.1",
"release-plan": "^0.18.0",
"rollup": "^4.62.2",
"testem": "^3.20.1",
"vite": "^8.0.16"
},
"packageManager": "pnpm@10.17.1+sha512.17c560fca4867ae9473a3899ad84a88334914f379be46d455cbf92e5cf4b39d34985d452d2583baf19967fa76cb5c17bc9e245529d0b98745721aa7200ecaf7a",
"engines": {
"node": ">= 18"
},
"ember": {
"edition": "octane"
},
"ember-addon": {
"version": 2,
"type": "addon",
"main": "addon-main.cjs",
"demoURL": "https://empress.github.io/ember-cli-showdown/",
"app-js": {
"./components/markdown-to-html.js": "./dist/_app_/components/markdown-to-html.js"
}
}
}