forked from HeyPuter/puter
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) 路 4.1 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) 路 4.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "elastos-desktop",
"version": "1.4.0",
"author": "Elacity LLC",
"license": "AGPL-3.0-only",
"description": "PC2 - your sovereign Web3 cloud desktop that runs on your own hardware.",
"homepage": "https://pc2.net",
"type": "module",
"main": "exports.js",
"directories": {
"lib": "lib"
},
"devDependencies": {
"@eslint/js": "^9.35.0",
"@playwright/test": "^1.56.1",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.46.1",
"@typescript-eslint/parser": "^8.46.1",
"chalk": "^4.1.0",
"clean-css": "^5.3.2",
"cross-env": "^7.0.3",
"depcheck": "^1.4.7",
"dotenv": "^16.5.0",
"eslint": "^9.35.0",
"eslint-rule-composer": "^0.3.0",
"express": "^4.18.2",
"globals": "^15.15.0",
"html-entities": "^2.3.3",
"html-webpack-plugin": "^5.6.0",
"husky": "^9.1.7",
"jscpd": "^4.2.2",
"license-check-and-add": "^4.0.5",
"mocha": "^10.6.0",
"nodemon": "^3.1.0",
"ts-proto": "^2.8.0",
"typescript": "^5.4.5",
"uglify-js": "^3.17.4",
"vite-plugin-static-copy": "^3.1.3",
"vitest": "4.0.14",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.1",
"yaml": "^2.8.1"
},
"scripts": {
"start:local": "node scripts/start-local.js",
"start:pc2": "cd pc2-node && npm start",
"dev:pc2": "cd pc2-node && cross-env PORT=4200 npm start",
"dev:ipfs": "cd pc2-node && npm run dev:ipfs",
"start:ipfs-dev": "cd pc2-node && npm run start:ipfs-dev",
"build:pc2": "npm run build:particle-auth && npm run build:gui && npm run build:server",
"build:gui": "cd src/gui && node ./build.js && cp dist/bundle.min.js dist/bundle.min.css dist/*.bundle.min.js ../../pc2-node/frontend/ 2>/dev/null || cp dist/bundle.min.js dist/bundle.min.css ../../pc2-node/frontend/",
"build:gui:watch": "nodemon --watch src/gui --ext js,css,svg,html --exec \"npm run build:gui\"",
"build:server": "cd pc2-node && npm run build",
"test": "npx mocha src/phoenix/test && npx vitest run src/backend && 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 src/backend",
"start=gui": "nodemon --exec \"node dev-server.js\" ",
"start": "node ./tools/run-selfhosted.js",
"dev": "cross-env 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",
"prebuild": "npm run build:particle-auth",
"check-translations": "node tools/check-translations.js",
"prepare": "husky 2>/dev/null || true",
"build:ts": "tsc",
"gen": "./scripts/gen.sh",
"build:particle-auth": "cd ./packages/particle-auth && npm install --legacy-peer-deps && npm run build && rm -rf ../../src/particle-auth && mv ./dist ../../src/particle-auth",
"release": "./scripts/release.sh"
},
"workspaces": [
"src/*",
"tools/*",
"packages/*",
"experiments/js-parse-and-output"
],
"nodemonConfig": {
"ext": "js, json, mjs, jsx, svg, css",
"ignore": [
"./dist/",
"./node_modules/"
]
},
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@aws-sdk/client-secrets-manager": "^3.879.0",
"@aws-sdk/client-sns": "^3.907.0",
"@google/genai": "^1.19.0",
"@heyputer/putility": "^1.0.2",
"@paralleldrive/cuid2": "^2.2.2",
"@stylistic/eslint-plugin-js": "^4.4.1",
"dedent": "^1.5.3",
"express-xml-bodyparser": "^0.4.1",
"ioredis": "^5.6.0",
"javascript-time-ago": "^2.5.11",
"json-colorizer": "^3.0.1",
"open": "^10.1.0",
"parse-domain": "^8.2.2",
"simple-git": "^3.25.0",
"string-template": "^1.0.0",
"uuid": "^9.0.1"
},
"optionalDependencies": {
"canvas": "^2.11.2",
"pdfjs-dist": "^4.10.38",
"sharp": "^0.34.4",
"sharp-bmp": "^0.1.5",
"sharp-ico": "^0.1.5"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}