mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-03 08:00:32 +00:00
88 lines
2.9 KiB
JSON
88 lines
2.9 KiB
JSON
{
|
|
"name": "puter.com",
|
|
"version": "2.5.1",
|
|
"author": "Puter Technologies Inc.",
|
|
"license": "AGPL-3.0-only",
|
|
"description": "Desktop environment in the browser!",
|
|
"homepage": "https://puter.com",
|
|
"type": "module",
|
|
"directories": {
|
|
"lib": "lib"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.35.0",
|
|
"@playwright/test": "^1.56.1",
|
|
"@stylistic/eslint-plugin": "^5.3.1",
|
|
"@types/express": "^5.0.0",
|
|
"@types/mime-types": "^3.0.1",
|
|
"@typescript-eslint/eslint-plugin": "^8.46.1",
|
|
"@typescript-eslint/parser": "^8.46.1",
|
|
"@vitest/coverage-v8": "^4.0.14",
|
|
"@vitest/ui": "^4.0.14",
|
|
"chalk": "^4.1.0",
|
|
"clean-css": "^5.3.2",
|
|
"dotenv": "^16.4.5",
|
|
"eslint": "^9.35.0",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.5",
|
|
"eslint-rule-composer": "^0.3.0",
|
|
"globals": "^15.15.0",
|
|
"html-webpack-plugin": "^5.6.0",
|
|
"husky": "^9.1.7",
|
|
"license-check-and-add": "^4.0.5",
|
|
"nodemon": "^3.1.0",
|
|
"prettier": "^3.8.3",
|
|
"simple-git": "^3.32.3",
|
|
"typescript": "^5.4.5",
|
|
"uglify-js": "^3.17.4",
|
|
"vite-plugin-static-copy": "^3.3.0",
|
|
"webpack": "^5.88.2",
|
|
"webpack-cli": "^5.1.1",
|
|
"yaml": "^2.8.1"
|
|
},
|
|
"scripts": {
|
|
"test": "npx vitest run --config=src/backend/vitest.config.ts && node src/backend/tools/test.mjs",
|
|
"test:puterjs-api": "vitest run tests/puterJsApiTests",
|
|
"test:backend": "npm run build:ts; vitest run --config=src/backend/vitest.config.ts",
|
|
"test:backend-coverage": "npm run build:ts; vitest run --config=src/backend/vitest.config.ts",
|
|
"start=gui": "nodemon --exec \"node dev-server.js\" ",
|
|
"start": "node --enable-source-maps -r ./dist/src/backend/telemetry.js ./dist/src/backend/index.js",
|
|
"prestart": "npm run build:ts",
|
|
"dev": "npm run build:ts && node --enable-source-maps -r ./dist/src/backend/telemetry.js ./dist/src/backend/index.js",
|
|
"build": "npm run build:ts && cd src/gui && node ./build.js && cd ../puter-js && npm run build",
|
|
"build:workerLib": "cd src/puter-js && npm run build && cd ../worker && npm run build",
|
|
"check-translations": "node tools/check-translations.js",
|
|
"prepare": "husky",
|
|
"build:ts": "tsc -p tsconfig.json && node ./tools/write-dist-package-json.mjs",
|
|
"postinstall": "./tools/extensionSetup.sh"
|
|
},
|
|
"workspaces": [
|
|
"src/*",
|
|
"tools/*",
|
|
"experiments/js-parse-and-output"
|
|
],
|
|
"nodemonConfig": {
|
|
"ext": "js, json, mjs, jsx, svg, css",
|
|
"ignore": [
|
|
"./dist/",
|
|
"./node_modules/"
|
|
]
|
|
},
|
|
"dependencies": {
|
|
"@ai-sdk/openai": "^3.0.25",
|
|
"@aws-sdk/client-s3": "^3.1020.0",
|
|
"@aws-sdk/s3-request-presigner": "^3.1028.0",
|
|
"@heyputer/putility": "^1.0.2",
|
|
"ai": "^6.0.73",
|
|
"dedent": "^1.5.3",
|
|
"javascript-time-ago": "^2.5.11",
|
|
"open": "^10.1.0"
|
|
},
|
|
"optionalDependencies": {
|
|
"sharp": "^0.34.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=24.0.0"
|
|
}
|
|
}
|