forked from 1j01/98
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.99 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
{
"name": "98",
"description": "Web-based Windows 98 clone",
"version": "0.1.3",
"repository": {
"type": "git",
"url": "https://github.com/1j01/98.git"
},
"bugs": {
"url": "https://github.com/1j01/98/issues"
},
"license": "UNLICENSED",
"private": true,
"keywords": [
"web-based",
"recreation",
"clone",
"simulator",
"retro",
"classic",
"desktop",
"web-desktop",
"web",
"browser",
"windows",
"98",
"98.js",
"windows-98",
"operating-system",
"os",
"js",
"javascript"
],
"devDependencies": {
"browserfs": "^1.4.3",
"json": "^9.0.6",
"live-server": "^1.2.0",
"recursive-copy": "^2.0.9",
"rimraf": "^2.6.2",
"webamp": "1.1.1"
},
"scripts": {
"start": "live-server",
"make-fs-index": "make_http_index | json > filesystem-index.json",
"make-fs-index @NOTE": "browserfs is currently assumed to be npm linked at around 2.0.0-beta",
"make-fs-index @TODO": "Create a pre-commit hook, or keep this file out of repo, either have it as part of a webserver, or just generated on deploy (in which case it could still be a static site). Ignore gitignored files, including globally gitignored lnk files... altho this is the one repo where lnk files might make sense; I'm sure there's a way to base it off of what things are checked in to git. git ls-files, or git ls-tree, ideally with the contents after staged changes would be applied (is there a 'tree-ish' for that?)",
"update-jspaint": "node src/update-jspaint.js",
"pull-libs @TODO": "# make it into a script so it's not all crammed onto one line in this package.json; include jquery and stuff; maybe even update script tags in html, with CDN URLs, integrity checksums, and fallbacks",
"pull-libs": "cp node_modules/webamp/built/webamp.bundle.js programs/winamp/lib/webamp.bundle.js && cp node_modules/webamp/built/webamp.bundle.min.js programs/winamp/lib/webamp.bundle.min.js && cp node_modules/browserfs/dist/browserfs.js lib/browserfs.js && cp node_modules/browserfs/dist/browserfs.min.js lib/browserfs.min.js"
}
}