-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.68 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
{
"name": "@benev/mule",
"version": "0.0.0",
"description": "inventory system for web games",
"license": "MIT",
"author": "Chase Moskal <[email protected]>",
"type": "module",
"main": "x/main.js",
"files": [
"x",
"s"
],
"scripts": {
"build": "run-s clean && run-p importly compile",
"clean": "rimraf x && mkdirp x",
"importly": "importly --host=node_modules < package-lock.json > x/importmap.json",
"links": "run-s link-s link-modules",
"link-s": "ln -s $(realpath s) x/s",
"link-modules": "ln -s $(realpath node_modules) x/node_modules",
"compile": "run-p links sass && run-s typescript web",
"typescript": "tsc",
"sass": "sass s/web/templates/:x/",
"web": "node x/web/build.js",
"watch-sass": "npm run sass -s -- --watch",
"watch-typescript": "tsc -w",
"watch": "run-p watch-sass watch-typescript watch-web",
"watch-web": "chokidar \"x/web/**/*\" -c \"npm run web -s && echo 'rebuilt web'\"",
"http": "http-server x",
"start": "run-p http watch",
"test": "exit 0"
},
"dependencies": {
"@chasemoskal/magical": "^0.1.2",
"lit": "^2.4.1",
"xiome": "^0.0.33"
},
"devDependencies": {
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"es-module-shims": "^1.6.2",
"http-server": "^14.1.1",
"importly": "^0.2.0",
"mkdirp": "^1.0.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sass": "^1.57.1",
"typescript": "^4.9.3"
},
"keywords": [
"input",
"user-input",
"touch",
"mobile",
"thumbsticks"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/mule.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/mule/issues"
},
"homepage": "https://github.com/benevolent-games/mule#readme"
}