-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
48
49
50
51
52
{
"name": "@avo-hq/marksmith",
"description": "GitHub-style markdown editor for Ruby and Rails",
"author": "Adrian Marin <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/avo-hq/marksmith",
"module": "app/assets/builds/marksmith.esm.js",
"version": "0.1.1",
"exports": {
".": "./dist/marksmith.esm.js",
"./core": "./dist/marksmith-core.esm.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/avo-hq/marksmith.git"
},
"bugs": {
"url": "https://github.com/avo-hq/marksmith/issues"
},
"type": "module",
"publishConfig": {
"access": "public"
},
"files": [
"dist/marksmith.esm.js",
"dist/marksmith-core.esm.js"
],
"devDependencies": {
"@github/markdown-toolbar-element": "^2.2.3",
"@github/paste-markdown": "^1.5.3",
"@hotwired/stimulus": "^3.2.2",
"@hotwired/turbo-rails": "^8.0.12",
"@rails/activestorage": "^8.0.100",
"@rails/request.js": "^0.0.11",
"@rollup/plugin-node-resolve": "^16.0.0",
"@tailwindcss/vite": "^4.0.0",
"lodash": "^4.17.21",
"rollup": "^4.31.0",
"tailwindcss": "^4.0.0",
"vite": "^5.4.11",
"vite-plugin-ruby": "^5.1.1"
},
"scripts": {
"build": "yarn build:js && yarn build:css",
"build:js": "rollup -c",
"build:css": "npx @tailwindcss/cli -i app/frontend/entrypoints/application.css -o app/assets/stylesheets/marksmith.css"
},
"dependencies": {
"@tailwindcss/cli": "^4.0.0",
"@tailwindcss/typography": "^0.5.16"
}
}