-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
30 lines (30 loc) · 926 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
{
"name": "PlatformInfo",
"version": "1.0.2",
"description": "A modern library to detect OSes and architectures.",
"copyright": "Copyright 2021 dangered wolf",
"main": "./src/PlatformInfo.js",
"types": "./src/PlatformInfo.d.ts",
"type":"module",
"license": "MIT",
"bugs": {
"url": "https://github.com/dangeredwolf/PlatformInfo/issues"
},
"author": "dangered wolf",
"scripts": {
"start": "./node_modules/.bin/babel PlatformInfo.js --out-dir out --presets=@babel/env",
"rollup": "rollup -c rollup.config.js"
},
"repository": "https://github.com/dangeredwolf/PlatformInfo",
"devDependencies": {
"@babel/cli": "^7.12.10",
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-node-resolve": "^8.0.1",
"core-js": "^3.8.3",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^6.1.0"
}
}