-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 860 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 860 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": "nativewebkit",
"version": "1.0.0",
"description": "Access Native API's in Safari",
"type": "module",
"main": "build/nativewebkit.js",
"module": "./build/nativewebkit.module.js",
"exports": {
".": {
"import": "./build/nativewebkit.module.js"
},
"./src/*": "./src/*"
},
"browserslist": [
"last 3 Safari major versions, not dead"
],
"scripts": {
"build": "rollup -c rollup.config.mjs"
},
"repository": "https://github.com/zakaton/NativeWebKit.js.git",
"author": "Zack Qattan <zack@ukaton.com>",
"license": "MIT",
"private": true,
"devDependencies": {
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"magic-string": "^0.30.5",
"rollup": "^4.9.1"
},
"dependencies": {}
}