-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 954 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
{
"name": "satellite-pro",
"type": "module",
"collaborators": [
"Yu Peng <1196194875@qq.com>"
],
"description": "Modular set of functions for SGP4 and SDP4 propagation of TLEs.",
"version": "0.1.2",
"license": "MIT",
"files": [
"./index.js",
"./pkg/satellite_bg.wasm",
"./pkg/satellite.js",
"./pkg/satellite_bg.js",
"./pkg/satellite.d.ts"
],
"main": "index.js",
"types": "./pkg/satellite.d.ts",
"sideEffects": [
"./pkg/satellite.js",
"./pkg/snippets/*"
],
"scripts": {
"build": "wasm-pack build --target bundler"
},
"repository": {
"type": "git",
"url": "git://github.com/njueyupeng/satellite"
},
"keywords": [
"sgp4",
"satellite",
"wasm",
"rust",
"webAssembly"
],
"bugs": {
"url": "https://github.com/njueyupeng/satellite/issues"
}
}