forked from baoagency/polaris_view_components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.54 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": "polaris-view-components",
"version": "0.11.0",
"description": "ViewComponents for Polaris Design System",
"main": "app/assets/javascripts/polaris_view_components.js",
"module": "app/assets/javascripts/polaris_view_components/index.js",
"repository": "[email protected]:baoagency/polaris_view_components.git",
"author": "By Association Only",
"contributors": [
"Dan Gamble <[email protected]>",
"Kirill Platonov <[email protected]>"
],
"files": [
"app/javascript/polaris/*.js",
"src/*.js"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"peerDependencies": {
"@hotwired/stimulus": "^3.0.0",
"@rails/request.js": "^0.0.6"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"build:css": "postcss ./app/assets/stylesheets/polaris_view_components.postcss.css -o ./app/assets/stylesheets/polaris_view_components.css",
"prerelease": "yarn build && yarn build:css && git --no-pager diff && echo && npm pack --dry-run && echo && read -n 1 -p \"Look OK? Press any key to publish and commit v$npm_package_version\" && echo",
"release": "npm publish"
},
"devDependencies": {
"@popperjs/core": "^2.11.5",
"@rollup/plugin-node-resolve": "^13.3.0",
"@shopify/polaris": "7.6.0",
"postcss": "^8.4.14",
"postcss-cli": "^9.1.0",
"postcss-import": "^14.1.0",
"postcss-nested": "^5.0.6",
"rollup": "^2.75.6",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@hotwired/stimulus": "^3.0.1",
"@rails/request.js": "^0.0.6"
}
}