forked from microsoft/devicescript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 845 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 845 Bytes
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
{
"name": "@devicescript/vm",
"private": false,
"version": "1.0.7",
"description": "DeviceScript Virtual Machine",
"keywords": [
"devicescript",
"jacdac",
"iot",
"embedded"
],
"author": "Microsoft",
"main": "./built/devicescript-vm.js",
"types": "./dist/types.d.ts",
"scripts": {
"dist": "yarn install && yarn build",
"serve": "(cd built && rm -f bytecode.devs && ln -s ../../../.devicescript/bin/bytecode.devs .) && http-server -c-1 -p 7070 .",
"build": "tsc"
},
"license": "MIT",
"devDependencies": {
"@types/emscripten": "^1.39.6",
"typescript": "^4.5.4",
"websocket-polyfill": "^0.0.3"
},
"publishConfig": {
"access": "public"
},
"files": [
"./built",
"./dist"
]
}