-
Notifications
You must be signed in to change notification settings - Fork 80
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.89 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.89 KB
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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "pln",
"description": "Pylon IDE",
"version": "2.12.2",
"license": "GPL-3.0",
"homepage": "https://github.com/pylonide/pylon",
"engines": {
"node": ">= 22.22.2"
},
"author": "Sten Feldman <exile@chamber.ee>",
"contributors": [
"Ajax.org B.V. <info@ajax.org>",
"Sten Feldman <exile@chamber.ee> (https://sten.pw/)"
],
"help": {
"web": "https://github.com/pylonide/pylon/blob/master/README.md"
},
"dependencies": {
"async": "~3.2.0",
"colors": "~1.4.0",
"connect": "~3.7.0",
"express-session": "~1.19.0",
"session-file-store": "~1.5.0",
"cookie-parser": "~1.4.3",
"body-parser": "~2.3.0",
"serve-static": "~2.2.0",
"serve-favicon": "~2.5.0",
"csurf": "~1.11.0",
"urlrouter": "~0.5.4",
"qs": "~6.15.0",
"parseurl": "~1.3.2",
"passport": "~0.7.0",
"passport-http": "~0.3.0",
"passport-local": "~1.0.0",
"msgpack-js-browser": "~0.1.4",
"engine.io": "~6.6.2",
"engine.io-client": "~6.6.2",
"amd-loader": "~0.0.8",
"http-error": "~0.0.6",
"simple-template": "~0.0.1",
"mime-types": "~3.0.1",
"netutil": "~0.0.2",
"architect": "~0.1.13",
"node-pty": "1.1.0",
"xterm": "~5.3.0",
"xterm-addon-fit": "~0.8.0",
"vary": "^1.1.2",
"asyncjs": "~0.0.13",
"yargs": "~18.1.0",
"@pylonide/architect-build": "~0.4.0",
"@pylonide/dryice": "^0.8.0",
"@pylonide/jsdav": "~1.2.0",
"@pylonide/smith": "~0.4.0",
"@pylonide/treehugger": "~0.4.0",
"@pylonide/v8debug": "~0.4.0",
"@pylonide/vfs-architect": "~0.9.0",
"@pylonide/vfs-nodefs-adapter": "~0.9.0",
"ace": "https://github.com/ajaxorg/ace/tarball/v1.43.6"
},
"devDependencies": {
"rimraf": "~6.1.0",
"@xmldom/xmldom": "~0.9.8",
"xpath": "~0.0.27",
"mocha": "~11.7.6",
"sinon": "~22.1.0",
"typescript": "~7.0.2"
},
"repository": {
"type": "git",
"url": "https://github.com/pylonide/pylon.git"
},
"scripts": {
"start": "./bin/pylon.sh",
"test": "npm run-script build && ./test/run-tests.sh",
"build": "mkdir -p ./plugins-client/lib.ppc/www/ppc && cd ppc && mkdir -p build && node ppc-package.js projects/default.ppp && cat ./build/ppc_release.js | sed 's/\\(\\/\\*FILEHEAD(\\).*//g' > ../plugins-client/lib.ppc/www/ppc/ppc.js && cd ..",
"postinstall": "chmod +x node_modules/node-pty/prebuilds/*/spawn-helper ../node-pty/prebuilds/*/spawn-helper 2>/dev/null; npm run-script build; PYLON_ROOT=$(pwd); if [ -d 'node_modules/ace' ]; then cd node_modules/ace; else mkdir -p node_modules; ln -s ../../ace node_modules/ace; ln -s ../../@pylonide node_modules/@pylonide; cd ../ace; fi; make clean pre_build; node \"$PYLON_ROOT/build/patch_ace_makefile.js\"; node ./MakefilePylon.dryice.js minimal; cd \"$PYLON_ROOT\"; make worker; make mode; make theme; if [ -L 'node_modules/ace' ]; then rm node_modules/ace; rm node_modules/@pylonide; rmdir node_modules; fi"
}
}