-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 964 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 964 Bytes
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
{
"private": true,
"name": "@e280/e280",
"version": "0.1.1",
"description": "e280 website",
"license": "MIT",
"author": "Chase Moskal <chasemoskal@gmail.com>",
"type": "module",
"main": "x/index.js",
"files": [
"x",
"s"
],
"scripts": {
"build": "run-s _clean _tsc _ln _scute",
"start": "octo 'scute -vw' 'tsc -w' 'http-server x'",
"_clean": "rm -rf x && mkdir x",
"_tsc": "tsc",
"_scute": "scute -v",
"_ln": "run-s _ln:s _ln:assets",
"_ln:s": "ln -s \"$(realpath s)\" x/s",
"_ln:assets": "ln -s \"$(realpath assets)\" x/assets",
"test": "exit 0"
},
"dependencies": {
"@e280/scute": "^0.1.2",
"@e280/sly": "^0.2.2"
},
"devDependencies": {
"http-server": "^14.1.1",
"npm-run-all": "^4.1.5",
"typescript": "^5.9.3"
},
"homepage": "https://github.com/e280/e280#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/e280/e280.git"
},
"bugs": {
"url": "https://github.com/e280/e280/issues"
}
}