-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.3 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
{
"author": "ionous",
"bugs": {
"url": "https://todo.sr.ht/~ionous/tapestry"
},
"devDependencies": {
"concurrently": "^8.2.2"
},
"description": "A story engine for games.",
"homepage": "https://git.sr.ht/~ionous/tapestry#readme",
"license": "BSD-3-Clause",
"name": "tapestry",
"repository": {
"type": "git",
"url": "https://git.sr.ht/~ionous/tapestry.git"
},
"scripts": {
"mosaic": "npm run -w www dev",
"build": "concurrently -m 1 -k \"npm:build-*\"",
"build-code": "go run ./cmd/tap code -in ./idl -out ./dl",
"build-code-docs": "go run ./cmd/tap doc -out ./docs/bin/extra/codedocs/api",
"build-code-schema": "go run ./cmd/tap code -in idl -schema ./docs/bin/extra/static/schema/tap.schema.json",
"build-weave": "go run ./cmd/tap weave",
"build-dump": "go run ./cmd/tap dump cloak",
"build-go": "go build ./...",
"build-wasm": "npm run -w wasm build",
"build-wasm-docs": "cp -pfR ./engines/wasm/dist/ ./docs/bin/extra/wasm/cloak-of-darkness",
"build-godot": "go build -C ./engines/godot/ext/src -o taplib.so -buildmode=c-shared taplib.go",
"build-docs": "npm run -w docs build",
"tap": "go run ./cmd/tap",
"test": "go test -count=1 ./..."
},
"version": "1.0.0",
"workspaces": [
"www",
"engines/wasm",
"docs"
]
}