-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 759 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 759 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
32
{
"name": "privacywire",
"author": "webworkerJoshua",
"version": "1.1.12",
"license": "GPL-3.0",
"private": true,
"engines": {
"node": ">=18",
"npm": ">=9"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c --compact",
"lint": "biome check --write",
"format": "biome format --write",
"check": "biome check --write",
"check:ci": "biome ci"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@biomejs/biome": "1.9.4",
"@rollup/plugin-babel": "^7.0.0",
"@rollup/plugin-terser": "^1.0.0",
"postcss": "^8.5.8",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-ignore-import": "^1.3.2",
"rollup-plugin-postcss": "^4.0.2",
"rollup-pluginutils": "^2.8.2"
}
}