-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
61 lines (61 loc) · 1.51 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@fuse-open/uno",
"version": "3.0.0-beta.11",
"description": "Extremely fast, native C#-dialect and powerful tooling for mobile and desktop developers.",
"main": "index.js",
"types": "index.d.ts",
"dependencies": {
"@fuse-open/opentk": "^3.2.0",
"@fuse-open/transpiler": "^1.18.0",
"dotnet-run": "^2.0.0",
"xcode-devteams": "^1.0.1"
},
"devDependencies": {
"concurrently": "^8.2.1",
"filecompare": "^1.0.4",
"xbash": "^1.6.0"
},
"scripts": {
"build": "bash scripts/build.sh",
"postinstall": "node scripts/restore.js",
"postpack": "node scripts/restore.js",
"prepack": "bash scripts/pack.sh",
"test": "bash scripts/test.sh",
"test-with-timeout": "concurrently -k -r -s first -P \"node scripts/timeout.js\" \"npm test -- {@}\" --",
"version": "bash scripts/version.sh",
"uno": "node bin/uno.js"
},
"bin": {
"uno": "bin/uno.js"
},
"files": [
".unoconfig",
"bin/*",
"index.d.ts",
"index.js",
"lib/build/*",
"scripts/restore.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fuse-open/uno.git"
},
"keywords": [
"uno",
"programming-language",
"fuse",
"cross-platform",
"c-sharp",
"dotnet"
],
"author": "Fuse Open",
"license": "MIT",
"bugs": {
"url": "https://github.com/fuse-open/uno/issues"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/fuse-open"
},
"homepage": "https://github.com/fuse-open/uno#readme"
}