2024-03-03 10:39:14 +08:00
|
|
|
{
|
|
|
|
"name": "puter.com",
|
2024-07-12 05:13:49 +08:00
|
|
|
"version": "2.4.1",
|
2024-03-03 10:39:14 +08:00
|
|
|
"author": "Puter Technologies Inc.",
|
|
|
|
"license": "AGPL-3.0-only",
|
|
|
|
"description": "Desktop environment in the browser!",
|
|
|
|
"homepage": "https://puter.com",
|
2024-03-20 22:10:39 +08:00
|
|
|
"type": "module",
|
2024-03-31 07:08:03 +08:00
|
|
|
"main": "exports.js",
|
2024-03-03 10:39:14 +08:00
|
|
|
"directories": {
|
|
|
|
"lib": "lib"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-04-25 23:29:44 +08:00
|
|
|
"@eslint/js": "^9.1.1",
|
2024-03-03 10:39:14 +08:00
|
|
|
"chalk": "^4.1.0",
|
|
|
|
"clean-css": "^5.3.2",
|
2024-03-13 13:42:13 +08:00
|
|
|
"dotenv": "^16.4.5",
|
2024-04-25 23:29:44 +08:00
|
|
|
"eslint": "^9.1.1",
|
2024-03-03 10:39:14 +08:00
|
|
|
"express": "^4.18.2",
|
2024-04-25 23:29:44 +08:00
|
|
|
"globals": "^15.0.0",
|
2024-03-13 13:42:13 +08:00
|
|
|
"html-entities": "^2.3.3",
|
2024-09-05 11:51:57 +08:00
|
|
|
"html-webpack-plugin": "^5.6.0",
|
2024-07-09 16:10:33 +08:00
|
|
|
"license-check-and-add": "^4.0.5",
|
2024-07-19 04:30:05 +08:00
|
|
|
"mocha": "^10.6.0",
|
2024-03-31 07:08:03 +08:00
|
|
|
"nodemon": "^3.1.0",
|
2024-03-03 10:39:14 +08:00
|
|
|
"uglify-js": "^3.17.4",
|
2024-03-13 13:42:13 +08:00
|
|
|
"webpack": "^5.88.2",
|
2024-03-03 10:39:14 +08:00
|
|
|
"webpack-cli": "^5.1.1"
|
|
|
|
},
|
|
|
|
"scripts": {
|
2024-07-19 05:02:31 +08:00
|
|
|
"test": "npx mocha src/phoenix/test src/contextlink/test",
|
2024-03-31 07:08:03 +08:00
|
|
|
"start=gui": "nodemon --exec \"node dev-server.js\" ",
|
2024-07-09 16:18:55 +08:00
|
|
|
"start": "node ./tools/run-selfhosted.js",
|
2024-07-08 03:36:09 +08:00
|
|
|
"build": "cd src/gui; node ./build.js",
|
2024-06-08 13:07:42 +08:00
|
|
|
"check-translations": "node tools/check-translations.js"
|
2024-03-03 10:39:14 +08:00
|
|
|
},
|
2024-03-31 07:08:03 +08:00
|
|
|
"workspaces": [
|
2024-07-09 15:15:42 +08:00
|
|
|
"src/*",
|
2024-07-09 15:40:34 +08:00
|
|
|
"tools/*",
|
|
|
|
"experiments/js-parse-and-output"
|
2024-03-31 07:08:03 +08:00
|
|
|
],
|
2024-03-03 10:39:14 +08:00
|
|
|
"nodemonConfig": {
|
|
|
|
"ext": "js, json, mjs, jsx, svg, css",
|
|
|
|
"ignore": [
|
|
|
|
"./dist/",
|
|
|
|
"./node_modules/"
|
|
|
|
]
|
2024-03-31 07:08:03 +08:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-06-01 07:37:24 +08:00
|
|
|
"json-colorizer": "^3.0.1",
|
2024-07-09 05:31:50 +08:00
|
|
|
"simple-git": "^3.25.0",
|
2024-06-10 15:02:17 +08:00
|
|
|
"string-template": "^1.0.0",
|
2024-03-31 07:08:03 +08:00
|
|
|
"uuid": "^9.0.1"
|
2024-03-03 10:39:14 +08:00
|
|
|
}
|
|
|
|
}
|