Spaces:
Sleeping
Sleeping
| { | |
| "name": "@heyputer/gui", | |
| "version": "2.4.0", | |
| "author": "Puter Technologies Inc.", | |
| "license": "AGPL-3.0-only", | |
| "description": "Desktop environment in the browser!", | |
| "homepage": "https://puter.com", | |
| "type": "module", | |
| "main": "exports.js", | |
| "directories": { | |
| "lib": "lib" | |
| }, | |
| "devDependencies": { | |
| "@eslint/js": "^9.1.1", | |
| "chai": "^4.3.7", | |
| "chalk": "^4.1.0", | |
| "clean-css": "^5.3.2", | |
| "dotenv": "^16.4.5", | |
| "eslint": "^9.1.1", | |
| "express": "^4.18.2", | |
| "globals": "^15.0.0", | |
| "html-entities": "^2.3.3", | |
| "jsdom": "^21.1.0", | |
| "nodemon": "^3.1.0", | |
| "sinon": "^15.0.1", | |
| "uglify-js": "^3.17.4", | |
| "webpack": "^5.88.2", | |
| "webpack-cli": "^5.1.1" | |
| }, | |
| "scripts": { | |
| "test": "mocha ./test/**/*.test.js", | |
| "start=gui": "nodemon --exec \"node dev-server.js\" ", | |
| "build": "node ./build.js", | |
| "check-translations": "node tools/check-translations.js", | |
| "start-webpack": "webpack --watch --devtool source-map --stats=errors-only" | |
| }, | |
| "workspaces": [ | |
| "src/*" | |
| ], | |
| "nodemonConfig": { | |
| "ext": "js, json, mjs, jsx, svg, css", | |
| "ignore": [ | |
| "./dist/", | |
| "./node_modules/" | |
| ] | |
| }, | |
| "dependencies": { | |
| "json-colorizer": "^3.0.1", | |
| "string-template": "^1.0.0", | |
| "uuid": "^9.0.1" | |
| } | |
| } | |