-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
113 lines (113 loc) · 2.31 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "go-board",
"version": "2.7.6",
"private": false,
"description": "Go board",
"type": "module",
"main": "./target/libs.js",
"module": "./target/libs.js",
"exports": {
"./*": {
"import": "./target/*"
}
},
"files": [
"target",
"public/sfx",
"public/textures",
"public/go-board.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/deebloo/go-board.git"
},
"keywords": [],
"author": "deebloo",
"license": "MIT",
"bugs": {
"url": "https://github.com/deebloo/go-board/issues"
},
"scripts": {
"start": "wireit",
"build": "wireit",
"test": "wireit"
},
"wireit": {
"start": {
"command": "browser-sync start --server --files \"target/*.js\" \"*.html\"",
"service": true,
"dependencies": [
{
"script": "tsc",
"cascade": false
}
]
},
"build": {
"dependencies": [
"tsc",
"rollup"
]
},
"tsc": {
"command": "tsc --build --pretty",
"clean": "if-file-deleted",
"files": [
"src/**",
"tsconfig.json"
],
"output": [
"target/**",
"tsconfig.tsbuildinfo"
]
},
"rollup": {
"command": "rollup -c rollup.config.js",
"files": [
"target/**",
"rollup.config.js"
],
"output": [
"public/go-board.mind.js"
],
"dependencies": [
{
"script": "tsc",
"cascade": false
}
]
},
"test": {
"command": "wtr --config wtr.config.mjs",
"files": [
"target/**"
],
"dependencies": [
{
"script": "tsc",
"cascade": false
}
]
}
},
"dependencies": {
"@joist/di": "^4.0.0-next.6",
"@joist/element": "^4.0.0-next.6",
"tslib": "^2.5.2"
},
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@rollup/plugin-node-resolve": "^15.0.2",
"@rollup/plugin-terser": "^0.4.0",
"@types/mocha": "^10.0.1",
"@web/test-runner": "^0.18.0",
"@web/test-runner-playwright": "^0.11.0",
"browser-sync": "^3.0.0",
"firebase-tools": "^13.0.0",
"minify-html-literals": "^1.3.5",
"prettier": "^3.0.0",
"rollup": "^4.0.0",
"typescript": "^5.4.2",
"wireit": "^0.14.0"
}
}