This repository was archived by the owner on Oct 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.16 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@brixtol/rollup-config",
"version": "1.5.5",
"description": "Shared Rollup configuration interface used within the Brixtol Textiles monorepo.",
"keywords": [
"rollup",
"rollup-plugin",
"config",
"brixtol"
],
"homepage": "https://github.com/brixtol/rollup-config",
"author": {
"name": "Νίκος Σαβίδης ",
"email": "n@brixtol.com",
"url": "https://brixtoltextiles.com"
},
"license": "MIT",
"type": "module",
"types": "./index.d.ts",
"exports": "./index.js",
"scripts": {
"dev": "tsc --watch",
"build": "tsc",
"postpublish": "pnpm up @brixtol/rollup-config -r"
},
"repository": {
"type": "git",
"url": "https://github.com/brixtol/rollup-config"
},
"bugs": {
"url": "https://github.com/brixtol/rollup-config"
},
"prettier": "@brixtol/prettier-config",
"eslintConfig": {
"ignorePatterns": [
"index.js",
"index.d.ts"
],
"extends": "@brixtol/eslint-config"
},
"dependencies": {
"@brixtol/rollup-html": "workspace:*",
"@brixtol/rollup-utils": "workspace:*",
"@rollup/plugin-alias": "^3.1.9",
"@rollup/plugin-beep": "^0.2.0",
"@rollup/plugin-commonjs": "^21.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.2.0",
"@rollup/plugin-replace": "^4.0.0",
"rollup-plugin-browsersync": "^1.3.3",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.1",
"rollup-plugin-esbuild": "^4.9.1",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-ts-paths": "^1.0.5"
},
"devDependencies": {
"@brixtol/eslint-config": "workspace:*",
"@brixtol/prettier-config": "workspace:*",
"@brixtol/tsconfig": "workspace:*",
"@types/browser-sync": "^2.26.3",
"estree-walker": "^3.0.1",
"ts-essentials": "^9.1.2"
},
"optionalDependencies": {
"autoprefixer": "^10.4.4",
"esbuild": "^0.14.36",
"postcss": "^8.4.12",
"rollup": "^2.70.1",
"typescript": "^4.6.3"
}
}