puter/package.json

54 lines
1.3 KiB
JSON
Raw Normal View History

2024-03-03 02:39:14 +00:00
{
"name": "puter.com",
2024-07-11 21:13:49 +00:00
"version": "2.4.1",
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": {
"@eslint/js": "^9.1.1",
2024-03-03 02:39:14 +00:00
"chalk": "^4.1.0",
"clean-css": "^5.3.2",
"dotenv": "^16.4.5",
"eslint": "^9.1.1",
2024-03-03 02:39:14 +00:00
"express": "^4.18.2",
"globals": "^15.0.0",
"html-entities": "^2.3.3",
2024-07-09 08:10:33 +00:00
"license-check-and-add": "^4.0.5",
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",
"webpack": "^5.88.2",
2024-03-03 02:39:14 +00:00
"webpack-cli": "^5.1.1"
},
"scripts": {
2024-07-18 20:20:57 +00:00
"test": "cd src/phoenix && npm run test && cd - && cd src/contextlink && npm run test && cd -",
2024-03-30 23:08:03 +00:00
"start=gui": "nodemon --exec \"node dev-server.js\" ",
2024-07-09 08:18:55 +00:00
"start": "node ./tools/run-selfhosted.js",
2024-07-07 19:36:09 +00:00
"build": "cd src/gui; node ./build.js",
2024-06-08 05:07:42 +00:00
"check-translations": "node tools/check-translations.js"
2024-03-03 02:39:14 +00:00
},
2024-03-30 23:08:03 +00:00
"workspaces": [
2024-07-09 07:15:42 +00:00
"src/*",
"tools/*",
"experiments/js-parse-and-output"
2024-03-30 23:08:03 +00:00
],
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": {
"json-colorizer": "^3.0.1",
2024-07-08 21:31:50 +00:00
"simple-git": "^3.25.0",
2024-06-10 07:02:17 +00:00
"string-template": "^1.0.0",
2024-03-30 23:08:03 +00:00
"uuid": "^9.0.1"
2024-03-03 02:39:14 +00:00
}
}