-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.39 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": "moonshot-rails",
"version": "0.0.16",
"description": "A collection of Stimulus controllers for building SaaS applications with Rails",
"main": "app/assets/javascripts/moonshot.js",
"module": "app/assets/javascripts/moonshot/index.js",
"type": "module",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/cionescu/moonshot-rails.git"
},
"author": "Catalin Ionescu <[email protected]>",
"contributors": [],
"files": [
"app/javascript/moonshot/*.js"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"peerDependencies": {
"@hotwired/stimulus": "^3.2.0",
"@rails/request.js": ">= 0.0.9"
},
"scripts": {
"build": "rollup --config rollup.config.js",
"prerelease": "yarn run build && 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": {
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.4",
"postcss": "^8.4.29",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.1.0",
"postcss-nested": "^6.0.1",
"rollup": "^3.0"
},
"dependencies": {
"@hotwired/stimulus": "^3.2.2",
"@rails/request.js": "^0.0.9",
"crisp-sdk-web": "^1.0.21",
"posthog-js": "^1.167.0",
"shepherd.js": "^11.0.1"
}
}