-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 941 Bytes
/
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
{
"name": "@cable_ready/devtools",
"version": "0.0.1",
"description": "A DevTools Suite for CableReady",
"main": "dist/@cable_ready/devtools.js",
"files": [
"dist"
],
"keywords": [
"rails",
"cable_ready",
"stimulus_reflex"
],
"author": "Julian Rubisch ([email protected])",
"repository": "https://github.com/cableready/devtools",
"license": "MIT",
"peerDependencies": {
"cable_ready": "^5.0.0"
},
"dependencies": {
"@turbo-boost/devtools": "^0.0.1"
},
"devDependencies": {
"esbuild": "^0.17.16",
"eslint": "^8.38.0",
"prettier-standard": "^16.4.1"
},
"scripts": {
"build": "esbuild src/index.js --bundle --minify --sourcemap --format=esm --target=es2020,chrome79,edge44,firefox71,opera65,safari13 --analyze --outfile=dist/@cable_ready/devtools.js",
"build:watch": "yarn build -- --watch",
"standardize": "yarn run prettier-standard src/**/*.js"
}
}