-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.51 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.51 KB
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
{
"name": "stand-for-ukraine-widget",
"version": "1.0.0",
"description": "",
"main": "artifacts/index.min.js",
"types": "artifacts/index.d.ts",
"scripts": {
"build": "npm run clean:artifacts && rollup --config rollup/rollup.config.prod.ts --configPlugin typescript && tsc --build tsconfig.build.json",
"watch": "npm run clean:dist && rollup --watch --config rollup/rollup.config.dev.ts --configPlugin typescript",
"clean:dist": "node -e \"require('fs').rmSync('./dist', { force: true, recursive: true })\"",
"clean:artifacts": "node -e \"require('fs').rmSync('./artifacts', { force: true, recursive: true })\"",
"version": "npm run build && npm run gen:readme && git add -A .",
"gen:readme": "cat tool/readme.banner.md > README.md && sed -e \"s/\\${version}/$(node -e \"console.log(require('./package.json').version)\")/\" tool/readme.template.md >> README.md"
},
"author": "KonstantinKai<kosyak46@gmail.com>",
"license": "MIT",
"files": [
"artifacts/**/*"
],
"devDependencies": {
"@rollup/plugin-html": "^0.2.4",
"@rollup/plugin-replace": "^4.0.0",
"@rollup/plugin-typescript": "^8.3.3",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"rollup": "^2.75.7",
"rollup-plugin-dev": "^2.0.4",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-modify": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.7.4"
}
}