-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.12 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.12 KB
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
{
"name": "@eflyn/sdk",
"version": "1.0.0",
"description": "General namespaces for functions provided via global window.eflyn API to control platform and player applications.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"dev": "webpack --config webpack.config.js --watch",
"build": "webpack --config webpack.config.js && typedoc src/sdk/*/index.ts --disableSources --name \"Eflyn SDK\" --darkHighlightTheme dark-plus --customCss ./styles/docs.css && copyfiles -u 1 \"./assets/**/*\" ./docs/assets",
"release": "node scripts/release.js"
},
"publishConfig": {
"access": "public"
},
"keywords": [],
"author": "Eflyn",
"license": "ISC",
"dependencies": {
"@eflyn/esuite-client": "file:../esuite-client",
"eventemitter3": "^5.0.1",
"json-rpc-2.0": "^1.7.0",
"nanoid": "^5.0.5",
"reflect-metadata": "^0.2.1",
"tslib": "^2.6.2"
},
"homepage": "https://eflyn.com",
"devDependencies": {
"copyfiles": "^2.4.1",
"ts-loader": "^9.5.1",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"webpack": "^5.18.0",
"webpack-cli": "^5.1.4"
}
}