Files
2026-07-13 12:30:28 +08:00

80 lines
2.5 KiB
JSON

{
"name": "pinme",
"version": "2.0.11",
"publishConfig": {
"access": "public"
},
"description": "Deploy Your Frontend In a Single Command",
"main": "dist/index.js",
"scripts": {
"build": "node build.js",
"dev": "node build.js",
"lint": "eslint --ext .ts,.mjs bin test tests vitest.config.ts vitest.mutation.config.ts",
"typecheck": "tsc --noEmit --project tsconfig.test.json",
"test": "NODE_OPTIONS=--require=$PWD/test/setup/webcrypto.cjs vitest run test/unit test/integration test/login-tracking-source.test.mjs tests",
"test:coverage": "NODE_OPTIONS=--require=$PWD/test/setup/webcrypto.cjs vitest run --coverage test/unit test/integration test/login-tracking-source.test.mjs tests",
"test:cli": "npm run build && NODE_OPTIONS=--require=$PWD/test/setup/webcrypto.cjs vitest run test/cli",
"test:pack": "npm run build && NODE_OPTIONS=--require=$PWD/test/setup/webcrypto.cjs vitest run test/pack",
"test:mutation": "stryker run",
"verify": "npm run lint && npm run typecheck && npm run test && npm run test:coverage && npm run build && npm run test:cli && npm run test:pack",
"prepublishOnly": "npm run build"
},
"bin": {
"pinme": "./dist/index.js"
},
"files": [
"dist/index.js"
],
"keywords": [
"ipfs",
"cli",
"deploy",
"frontend"
],
"author": "Glitter Protocol",
"license": "MIT",
"dependencies": {
"adm-zip": "^0.5.17",
"archiver": "7.0.1",
"axios": "1.18.1",
"base-x": "5.0.1",
"bip39": "3.1.0",
"chalk": "2.4.2",
"commander": "11.1.0",
"crypto-js": "4.2.0",
"dayjs": "1.11.7",
"figlet": "1.7.0",
"form-data": "4.0.6",
"formdata-node": "6.0.3",
"fs-extra": "11.2.0",
"inquirer": "8.2.7",
"ora": "3.4.0",
"uuid": "9.0.1"
},
"devDependencies": {
"@stryker-mutator/core": "^7.3.0",
"@stryker-mutator/vitest-runner": "^7.3.0",
"@types/adm-zip": "^0.5.8",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^0.34.6",
"dotenv": "16.5.0",
"esbuild": "0.25.2",
"eslint": "8.33.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"execa": "^7.2.0",
"fast-check": "^3.23.2",
"nock": "^13.5.6",
"prettier": "2.8.3",
"tmp-promise": "^3.0.3",
"typescript": "^5.4.5",
"vitest": "^0.34.6"
},
"engines": {
"node": ">= 16.13.0"
}
}