-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "sailboat-components",
"version": "0.1.0",
"description": "ViewComponents for the Sailboat UI",
"author": "Maful <me@maful.web.id> (https://maful.web.id)",
"repository": "maful/sailboat_components",
"license": "MIT",
"main": "app/assets/javascripts/sailboat_components.js",
"types": "app/components/sailboat/sailboat.d.ts",
"style": "app/assets/styles/sailboat_components.css",
"keywords": [
"rails",
"view_components",
"components",
"library",
"design-system",
"sailboat"
],
"homepage": "https://github.com/maful/sailboat_components#readme",
"bugs": {
"url": "https://github.com/maful/sailboat_components/issues"
},
"files": [
"app/assets/**/*",
"app/components/sailboat/**/*.js",
"app/components/sailboat/**/*.css",
"app/components/sailboat/**/*.d.ts"
],
"scripts": {
"build:css": "scripts/build-assets css",
"build:js": "scripts/build-assets js"
},
"devDependencies": {
"chokidar-cli": "^3.0.0",
"cssnano": "^6.0.1",
"esbuild": "^0.18.4",
"postcss": "^8.4.24",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"postcss-preset-env": "^8.5.0",
"typescript": "^5.1.3"
},
"dependencies": {
"@rails/actioncable": "^7.0.5"
}
}