-
Notifications
You must be signed in to change notification settings - Fork 74
/
package.json
76 lines (76 loc) · 2.77 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
68
69
70
71
72
73
74
75
76
{
"name": "pln",
"description": "Pylon IDE",
"version": "2.10.0",
"license": "GPL-3.0",
"homepage": "https://github.com/pylonide/pylon",
"engines": {
"node": ">= 14.21.1",
"npm": ">= 6.14.17"
},
"author": "Sten Feldman <[email protected]>",
"contributors": [
"Ajax.org B.V. <[email protected]>",
"Sten Feldman <[email protected]> (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.17.0",
"session-file-store": "~1.5.0",
"cookie-parser": "~1.4.3",
"body-parser": "~1.20.0",
"serve-static": "~1.15.0",
"serve-favicon": "~2.5.0",
"csurf": "~1.11.0",
"urlrouter": "~0.5.4",
"qs": "~6.11.0",
"parseurl": "~1.3.2",
"passport": "~0.6.0",
"passport-http": "~0.3.0",
"passport-local": "~1.0.0",
"msgpack-js-browser": "~0.1.4",
"engine.io": "~6.5.1",
"engine.io-client": "~6.5.0",
"amd-loader": "~0.0.8",
"http-error": "~0.0.6",
"simple-template": "~0.0.1",
"netutil": "~0.0.2",
"architect": "~0.1.13",
"node-pty": "1.0.0",
"xterm": "~5.2.1",
"xterm-addon-fit": "~0.7.0",
"vary": "^1.1.2",
"asyncjs": "~0.0.13",
"yargs": "~17.7.1",
"@pylonide/architect-build": "~0.1.3",
"@pylonide/dryice": "^0.5.2",
"@pylonide/jsdav": "~0.9.0",
"@pylonide/smith": "~0.1.24",
"@pylonide/treehugger": "~0.1.0",
"@pylonide/v8debug": "~0.1.3",
"@pylonide/vfs-architect": "~0.6.0",
"@pylonide/vfs-nodefs-adapter": "~0.6.0",
"ace": "https://github.com/ajaxorg/ace/tarball/v1.23.2"
},
"devDependencies": {
"rimraf": "~5.0.1",
"@xmldom/xmldom": "~0.8.0",
"xpath": "~0.0.27",
"typescript": "~5.1.5"
},
"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": "npm run-script build; 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; sed 's/architect-build\\//@pylonide\\/architect-build\\//g' Makefile.dryice.js > MakefilePylon.dryice.js; node ./MakefilePylon.dryice.js minimal; cd ../..; make worker; make mode; make theme; if [ -L 'node_modules/ace' ]; then rm node_modules/ace; rm node_modules/@pylonide; rmdir node_modules; fi"
}
}