SIGN IN SIGN UP
HeyPuter / puter UNCLAIMED

🌐 The Internet Computer! Free, Open-Source, and Self-Hostable.

40066 0 1 JavaScript
2024-03-02 18:39:14 -08:00
{
"name": "puter.com",
2025-02-13 21:50:39 -05:00
"version": "2.5.1",
2024-03-02 18: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 14:10:39 +00:00
"type": "module",
2024-03-30 19:08:03 -04:00
"main": "exports.js",
2024-03-02 18:39:14 -08:00
"directories": {
"lib": "lib"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
2025-11-21 13:22:19 -08:00
"@playwright/test": "^1.56.1",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/mime-types": "^3.0.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"@vitest/coverage-v8": "^4.1.0",
"@vitest/ui": "^4.1.0",
2024-03-02 18:39:14 -08:00
"chalk": "^4.1.0",
"clean-css": "^5.3.2",
"dotenv": "^16.4.5",
"eslint": "^9.35.0",
"eslint-rule-composer": "^0.3.0",
2024-03-02 18:39:14 -08:00
"express": "^4.18.2",
"globals": "^15.15.0",
"html-entities": "^2.3.3",
2024-09-04 23:51:57 -04:00
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.7",
2024-07-09 04:10:33 -04:00
"license-check-and-add": "^4.0.5",
"mocha": "^7.2.0",
2024-03-30 19:08:03 -04:00
"nodemon": "^3.1.0",
"simple-git": "^3.32.3",
"ts-proto": "^2.8.0",
"typescript": "^5.4.5",
2024-03-02 18:39:14 -08:00
"uglify-js": "^3.17.4",
"vite-plugin-static-copy": "^3.3.0",
"vitest": "^4.1.0",
"webpack": "^5.88.2",
2025-11-21 13:22:19 -08:00
"webpack-cli": "^5.1.1",
"yaml": "^2.8.1"
2024-03-02 18:39:14 -08:00
},
"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",
2024-03-30 19:08:03 -04:00
"start=gui": "nodemon --exec \"node dev-server.js\" ",
"start": "node ./tools/run-selfhosted.js",
"prestart": "npm run build:ts",
"dev": "npm run build:ts && DEVCONSOLE=1 node ./tools/run-selfhosted.js",
"build": "npx eslint --quiet -c eslint/mandatory.eslint.config.js src/backend/src extensions && npm run build:ts && cd src/gui && node ./build.js",
"check-translations": "node tools/check-translations.js",
"prepare": "husky",
"build:ts": "tsc -p tsconfig.build.json",
"gen": "./scripts/gen.sh"
2024-03-02 18:39:14 -08:00
},
2024-03-30 19:08:03 -04:00
"workspaces": [
2024-07-09 03:15:42 -04:00
"src/*",
"tools/*",
"experiments/js-parse-and-output"
2024-03-30 19:08:03 -04:00
],
2024-03-02 18:39:14 -08:00
"nodemonConfig": {
"ext": "js, json, mjs, jsx, svg, css",
"ignore": [
"./dist/",
"./node_modules/"
]
2024-03-30 19:08:03 -04:00
},
"dependencies": {
"@ai-sdk/openai": "^3.0.25",
"@anthropic-ai/sdk": "^0.68.0",
"@aws-sdk/client-dynamodb": "^3.490.0",
2025-08-29 20:30:06 -04:00
"@aws-sdk/client-secrets-manager": "^3.879.0",
"@aws-sdk/client-sns": "^3.907.0",
"@aws-sdk/lib-dynamodb": "^3.490.0",
"@google/genai": "^1.19.0",
"@heyputer/putility": "^1.0.2",
2025-06-21 22:00:26 -04:00
"@paralleldrive/cuid2": "^2.2.2",
"@stylistic/eslint-plugin-js": "^4.4.1",
"ai": "^6.0.73",
"dedent": "^1.5.3",
"dynalite": "^4.0.0",
"express-xml-bodyparser": "^0.4.1",
"file-type": "21.3.3",
2024-11-21 11:03:40 -05:00
"javascript-time-ago": "^2.5.11",
"json-colorizer": "^3.0.1",
"music-metadata": "11.12.3",
"open": "^10.1.0",
2025-08-13 15:51:41 -04:00
"parse-domain": "^8.2.2",
2024-06-10 03:02:17 -04:00
"string-template": "^1.0.0",
2024-03-30 19:08:03 -04:00
"uuid": "^9.0.1"
2025-07-04 18:29:29 -04:00
},
"optionalDependencies": {
"sharp": "^0.34.4",
2025-07-04 18:29:29 -04:00
"sharp-bmp": "^0.1.5",
"sharp-ico": "^0.1.5"
},
"engines": {
"node": ">=24.0.0"
}
}