-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
42 lines (42 loc) · 931 Bytes
/
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
{
"name": "browser-or-node",
"version": "3.0.0",
"description": "Check in which environment the code is running - browser/node.js/webworker/jsdom/deno",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/flexdinesh/browser-or-node.git"
},
"keywords": [
"npm",
"browser",
"node",
"is browser",
"is node",
"is browser node"
],
"license": "MIT",
"homepage": "https://github.com/flexdinesh/browser-or-node#readme",
"devDependencies": {
"prettier": "3.1.0",
"tsup": "^7.3.0",
"typescript": "^5.2.2"
}
}