forked from hydro-sdk/hydro-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.27 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.27 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "@hydro-sdk/hydro-sdk",
"version": "0.0.1",
"description": "A new Flutter project.",
"main": "index.js",
"scripts": {
"tstl": "tstl",
"luac": "./../luac.lua -o assets/examples/hw.hc assets/examples/hw.lua",
"build:debug": "bash scripts/buildAllTs.bash debug",
"build:release": "bash scripts/buildAllTs.bash release",
"build:docs": "bash scripts/buildDocs.bash && cp _config.yml docs",
"build:examplesForDist": "npm run build:release && cp assets/**/*.hc dist && cp assets/**/*.hc.sha256 dist",
"test": "echo \"Error: no test specified\" && exit 1",
"test:ts2hc": " jest --testPathPattern=test/ts2hc",
"test:hydroc": " jest --testPathPattern=test/hydroc",
"dist": "npm run build:docs && npm run build:compiler && npm run build:examplesForDist"
},
"files": [
"runtime",
"hydroc.js"
],
"bin": {
"hydroc": "./hydroc.js"
},
"author": "",
"license": "ISC",
"devDependencies": {},
"dependencies": {
"@hydro-sdk/waveform": "0.0.1-nightly.48",
"@types/clear": "^0.1.0",
"@types/cli-progress": "^3.7.0",
"@types/colors": "^1.2.1",
"@types/jest": "^27.0.0",
"@types/luaparse": "^0.2.6",
"@types/minimist": "^1.2.1",
"@types/node": "^17.0.0",
"@types/progress": "^2.0.3",
"@types/rimraf": "^3.0.0",
"@types/source-map": "^0.5.7",
"axios": "^0.26.0",
"browserify": "^17.0.0",
"chalk": "^4.1.1",
"chokidar": "^3.4.3",
"clear": "^0.1.0",
"cli-progress": "^3.8.2",
"colors": "^1.4.0",
"commander": "^9.0.0",
"escape-regex-string": "^1.0.6",
"humanhash": "^1.0.4",
"import-sort-style-module": "^6.0.0",
"jest": "^26.1.0",
"luacodegen": "^1.0.2",
"luamin": "^1.0.4",
"luaparse": "^0.3.0",
"minimist": "^1.2.6",
"nexe": "^4.0.0-beta.18",
"pkg": "^5.0.0",
"prettier": "^2.2.0",
"prettier-plugin-import-sort": "0.0.7",
"progress": "^2.0.3",
"rimraf": "^3.0.2",
"serve-handler": "^6.1.3",
"source-map": "^0.7.3",
"ts-jest": "^26.2.0",
"typedoc": "0.22.12",
"typedoc-neo-theme": "1.1.1",
"typescript": "3.9.9",
"typescript-to-lua": "0.34.0"
},
"importSort": {
".js, .jsx, .ts, .tsx": {
"style": "module",
"parser": "typescript"
}
},
"prettier": {
"tabWidth": 4
}
}