2024-03-03 02:39:14 +00:00
|
|
|
{
|
|
|
|
"name": "puter.com",
|
2024-04-23 02:03:34 +00:00
|
|
|
"version": "2.2.0",
|
2024-03-03 02:39:14 +00:00
|
|
|
"author": "Puter Technologies Inc.",
|
|
|
|
"license": "AGPL-3.0-only",
|
|
|
|
"description": "Desktop environment in the browser!",
|
|
|
|
"homepage": "https://puter.com",
|
2024-03-20 14:10:39 +00:00
|
|
|
"type": "module",
|
2024-03-30 23:08:03 +00:00
|
|
|
"main": "exports.js",
|
2024-03-03 02:39:14 +00:00
|
|
|
"directories": {
|
|
|
|
"lib": "lib"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-04-25 15:29:44 +00:00
|
|
|
"@eslint/js": "^9.1.1",
|
2024-03-03 02:39:14 +00:00
|
|
|
"chalk": "^4.1.0",
|
|
|
|
"clean-css": "^5.3.2",
|
2024-03-13 05:42:13 +00:00
|
|
|
"dotenv": "^16.4.5",
|
2024-04-25 15:29:44 +00:00
|
|
|
"eslint": "^9.1.1",
|
2024-03-03 02:39:14 +00:00
|
|
|
"express": "^4.18.2",
|
2024-04-25 15:29:44 +00:00
|
|
|
"globals": "^15.0.0",
|
2024-03-13 05:42:13 +00:00
|
|
|
"html-entities": "^2.3.3",
|
2024-03-30 23:08:03 +00:00
|
|
|
"nodemon": "^3.1.0",
|
2024-03-03 02:39:14 +00:00
|
|
|
"uglify-js": "^3.17.4",
|
2024-03-13 05:42:13 +00:00
|
|
|
"webpack": "^5.88.2",
|
2024-03-03 02:39:14 +00:00
|
|
|
"webpack-cli": "^5.1.1"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2024-04-16 12:50:14 +00:00
|
|
|
"test": "mocha ./packages/phoenix/test ./packages/phoenix/packages/contextlink/test",
|
2024-03-30 23:08:03 +00:00
|
|
|
"start=gui": "nodemon --exec \"node dev-server.js\" ",
|
|
|
|
"start": "node run-selfhosted.js",
|
2024-03-20 12:00:56 +00:00
|
|
|
"build": "node ./build.js",
|
2024-04-15 18:02:49 +00:00
|
|
|
"check-translations": "node tools/check-translations.js",
|
2024-04-15 18:25:40 +00:00
|
|
|
"postinstall": "cd packages/phoenix && cd packages/contextlink && npm install && cd - && cd packages/strataparse && npm install && cd - && cd packages/pty && npm install"
|
2024-03-03 02:39:14 +00:00
|
|
|
},
|
2024-03-30 23:08:03 +00:00
|
|
|
"workspaces": [
|
|
|
|
"packages/*"
|
|
|
|
],
|
2024-03-03 02:39:14 +00:00
|
|
|
"nodemonConfig": {
|
|
|
|
"ext": "js, json, mjs, jsx, svg, css",
|
|
|
|
"ignore": [
|
|
|
|
"./dist/",
|
|
|
|
"./node_modules/"
|
|
|
|
]
|
2024-03-30 23:08:03 +00:00
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"uuid": "^9.0.1"
|
2024-03-03 02:39:14 +00:00
|
|
|
}
|
|
|
|
}
|