forked from Ayax0/ubx-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.45 KB
/
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
43
44
45
46
47
48
49
50
51
{
"name": "@nextlvlup/ubx-parser",
"version": "2.0.0",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ayax0/ubx-parser.git"
},
"bugs": {
"url": "https://github.com/Ayax0/ubx-parser/issues"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"homepage": "https://github.com/Ayax0/ubx-parser#readme",
"author": "Simon Gander",
"license": "ISC",
"devDependencies": {
"@types/node": "^18.11.18",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"directories": {
"lib": "lib"
},
"description": "",
"keywords": [
"ublox",
"ubx",
"gps",
"gnss",
"parser",
"tcp",
"serialport"
]
}