mirror of
https://github.com/HeyPuter/puter.git
synced 2026-05-04 08:30:39 +00:00
6fdea68eec
Docker Image CI / build-and-push-image (push) Has been cancelled
Maintain Release Merge PR / update-release-pr (push) Has been cancelled
release-please / release-please (push) Has been cancelled
test / test (20.x) (push) Has been cancelled
test / test (22.x) (push) Has been cancelled
test / api-test (22.x) (push) Has been cancelled
45 lines
1.6 KiB
JSON
45 lines
1.6 KiB
JSON
{
|
|
"name": "@heyputer/puter.js",
|
|
"version": "2.0.14",
|
|
"description": "Puter.js - A JavaScript library for interacting with Puter services.",
|
|
"main": "src/index.js",
|
|
"types": "index.d.ts",
|
|
"typings": "index.d.ts",
|
|
"type": "module",
|
|
"files": [
|
|
"dist/puter.cjs",
|
|
"src/",
|
|
"index.d.ts"
|
|
],
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/HeyPuter/puter.git"
|
|
},
|
|
"keywords": [
|
|
"puter",
|
|
"puter.js",
|
|
"puterjs"
|
|
],
|
|
"scripts": {
|
|
"start-server": "npx http-server --cors -c-1",
|
|
"start-webpack": "webpack --stats=errors-only && webpack --output-filename puter.dev.js --watch --devtool source-map --stats=errors-only",
|
|
"start": "concurrently \"npm run start-server\" \"npm run start-webpack\"",
|
|
"test": "npx http-server --cors -c-1 -o /test",
|
|
"build": "webpack && { echo \"// Copyright 2024-present Puter Technologies Inc. All rights reserved.\"; echo \"// Generated on $(date '+%Y-%m-%d %H:%M')\n\"; cat ./dist/puter.js; } > temp && mv temp ./dist/puter.js",
|
|
"prepublishOnly": "npm run build && mv dist/puter.js dist/puter.cjs && npm version patch"
|
|
},
|
|
"author": "Puter Technologies Inc.",
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"concurrently": "^8.2.2",
|
|
"http-server": "^14.1.1",
|
|
"webpack-cli": "^5.1.4"
|
|
},
|
|
"dependencies": {
|
|
"@heyputer/kv.js": "^0.2.1",
|
|
"@heyputer/putility": "^1.0.3"
|
|
}
|
|
} |