2
2
mirror of https://github.com/Llewellynvdm/nativefier.git synced 2024-06-27 07:33:47 +00:00
nativefier/app/package.json
Ronan Jouchet 4bf0226da0 Deps: come back to semver ^a.b.c syntax
Thinking about it again, the user-friendlier `a.x` syntax has one disadvantage
over `^a.b.c`: it doesn't force deps upgrades when they upgrade Nativefier.
`a.x` is fine on initial install, but a user with an insecure dep
(e.g. axios 0.19.0) will _not_ get fixed axios 0.21.1 on upgrading Nativefier.
-> Come back to `a.x` everywhere.

Still not introducing package locks, they're too confusing to new devs.
See https://github.com/nativefier/nativefier/pull/1099#issuecomment-761250232
2021-02-25 08:15:39 -05:00

26 lines
588 B
JSON

{
"name": "nativefier-placeholder",
"version": "1.0.0",
"description": "Placeholder for the nativefier cli to override with a target url",
"main": "lib/main.js",
"author": "Jia Hao",
"license": "MIT",
"keywords": [
"desktop",
"electron",
"placeholder"
],
"scripts": {},
"dependencies": {
"electron-context-menu": "^2.5.0",
"electron-dl": "^3.1.0",
"electron-squirrel-startup": "^1.0.0",
"electron-window-state": "^5.0.3",
"source-map-support": "^0.5.19",
"wurl": "^2.5.4"
},
"devDependencies": {
"electron": "^11.1.1"
}
}