-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
24 lines (24 loc) · 917 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
{
"name": "protoss-nodejs-basic",
"version": "2.18.0",
"author": "Zeta Ret",
"license": "MIT",
"type": "commonjs",
"scripts": {
"example_basic": "node ./examples/basic/example.js",
"example_api": "node ./examples/apiprovider/api_example.js",
"example_fileload": "node ./examples/fileload/file_example.js",
"example_htmlserver": "node ./examples/htmlserverload/server_example.js",
"example_stock": "node ./examples/stock/dist/app.js",
"prettier-ts-check": "prettier --check \"dist/**/*.js\"",
"prettier-ts-write": "prettier --write \"dist/**/*.js\"",
"tsc": "tsc --project ./tsconfig.json",
"tsc-pretty": "npm run tsc & npm run prettier-ts-write",
"start": "node index.js",
"start-module": "node type_module/indexModule.js",
"start-ts": "node indexTS.js"
},
"dependencies": {
"@types/protoss-nodejs-basic": "git+https://github.com/ZetaRet/protoss-nodejs-basic-types.git#v2.18.0"
}
}