-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.89 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
{
"name": "@benev/nubs",
"version": "0.3.0-dev.2",
"description": "user-input system for web games",
"license": "MIT",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"type": "module",
"main": "x/index.js",
"files": [
"x",
"s"
],
"scripts": {
"build": "run-s clean && run-p importly compile",
"start": "run-p http watch",
"http": "http-server x",
"clean": "rimraf x && mkdirp x",
"importly": "importly --host=node_modules < package-lock.json > x/importmap.json",
"compile": "run-p links sass && run-s typescript web",
"typescript": "tsc",
"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",
"sass": "sass s/web/templates/:x/",
"web": "node x/web/build.js",
"watch": "run-p watch-sass watch-typescript watch-web",
"watchtest": "chokidar 'x/**/*.js' -c 'node x/controls/parse/parse.test.js'",
"watch-sass": "npm run sass -s -- --watch",
"watch-typescript": "tsc -w",
"watch-web": "chokidar \"x/web/**/*\" -c \"npm run web -s && echo 'rebuilt web'\"",
"test-debug": "node inspect node_modules/cynic/dist/cli.js node x/tests.test.js",
"test": "cynic node x/tests.test.js"
},
"dependencies": {
"@chasemoskal/magical": "^0.1.8",
"lit": "^3.0.2",
"xiome": "^0.0.45"
},
"devDependencies": {
"chokidar": "^3.5.3",
"chokidar-cli": "^3.0.0",
"cynic": "^0.2.1",
"es-module-shims": "^1.8.1",
"http-server": "^14.1.1",
"importly": "^0.2.2",
"mkdirp": "^3.0.1",
"npm-run-all": "^4.1.5",
"rimraf": "^5.0.5",
"sass": "^1.69.5",
"typescript": "^5.2.2"
},
"keywords": [
"input",
"user-input",
"touch",
"mobile",
"thumbsticks"
],
"repository": {
"type": "git",
"url": "git+https://github.com/benevolent-games/nubs.git"
},
"bugs": {
"url": "https://github.com/benevolent-games/nubs/issues"
},
"homepage": "https://github.com/benevolent-games/nubs#readme"
}