forked from activeadmin/activeadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "@activeadmin/activeadmin",
"version": "4.0.0-beta13",
"description": "The administration framework for Ruby on Rails.",
"main": "dist/active_admin.js",
"type": "module",
"files": [
"dist/**/*.js",
"plugin.js",
"vendor/javascript/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/activeadmin/activeadmin.git"
},
"keywords": [
"administration",
"administrative",
"rails"
],
"author": "David Rodríguez <deivid.rodriguez@riseup.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/activeadmin/activeadmin/issues"
},
"homepage": "https://activeadmin.info",
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"eslint": "^9.8.0",
"gherkin-lint": "^4.2.2",
"rollup": "^4.19.2",
"tailwindcss": "^3.3.5",
"vitepress": "^1.4.0"
},
"scripts": {
"gherkin-lint": "gherkin-lint",
"lint": "eslint .",
"prebuild": "npm run lint && rm -rf dist",
"build": "rollup --config rollup.config.js",
"prepublishOnly": "npm run build",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"dependencies": {
"@rails/ujs": "7.1.400",
"flowbite": "2.3.0"
}
}