-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 945 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": "@astronautlabs/amf",
"version": "0.0.6",
"description": "Action Message Format (AMF0/3)",
"main": "dist/index.js",
"module": "dist.esm/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"keywords": [
"actionscript",
"rtmp",
"amf",
"flash",
"adobe"
],
"scripts": {
"clean": "rimraf dist dist.esm",
"build": "npm run clean && tsc -b && tsc -b tsconfig.esm.json",
"test": "npm run build && node dist/test",
"prepublishOnly": "npm test"
},
"author": "Astronaut Labs, LLC",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/node": "^17.0.10",
"chai": "^4.3.4",
"razmin": "^1.1.7",
"reflect-metadata": "^0.1.13",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.21",
"typescript": "^4.5.5",
"zone.js": "^0.11.4"
},
"dependencies": {
"@astronautlabs/bitstream": "^4.0.0"
}
}