-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 807 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 807 Bytes
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
{
"name": "app-build-scripts",
"version": "1.0.0",
"description": "A collection of scripts for a simple build setup.",
"license": "SEE LICENSE IN LICENSE",
"main": "index.js",
"engines": {
"node": ">=18.13.0",
"npm": ">=8.19.3"
},
"private": true,
"scripts": {
"lint": "eslint index.js",
"lint:fix": "npm run lint -- --fix",
"pretty": "prettier index.js --check",
"pretty:fix": "npm run pretty -- --write",
"format": "npm run pretty:fix && npm run lint:fix",
"build": "rollup -c --bundleConfigAsCjs"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^2.8.8",
"rollup": "^3.30.0",
"rollup-plugin-cleaner": "^1.0.0"
},
"files": [
"/dist"
]
}