mirror of
https://github.com/screenci/screenci.git
synced 2026-09-19 08:57:46 +08:00
156 lines
3.7 KiB
JSON
156 lines
3.7 KiB
JSON
{
|
|
"name": "screenci",
|
|
"version": "0.1.9",
|
|
"description": "ScreenCI",
|
|
"keywords": [
|
|
"screenci"
|
|
],
|
|
"license": "MIT",
|
|
"author": "ScreenCI Ltd",
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/screenci/screenci"
|
|
},
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"bin": {
|
|
"screenci": "./bin/screenci.js"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./init": {
|
|
"types": "./dist/src/init.d.ts",
|
|
"import": "./dist/src/init.js",
|
|
"default": "./dist/src/init.js"
|
|
},
|
|
"./recording": {
|
|
"types": "./dist/src/recording.d.ts",
|
|
"import": "./dist/src/recording.js",
|
|
"default": "./dist/src/recording.js"
|
|
},
|
|
"./easing": {
|
|
"types": "./dist/src/easing.d.ts",
|
|
"import": "./dist/src/easing.js",
|
|
"default": "./dist/src/easing.js"
|
|
},
|
|
"./cursorCurve": {
|
|
"types": "./dist/src/cursorCurve.d.ts",
|
|
"import": "./dist/src/cursorCurve.js",
|
|
"default": "./dist/src/cursorCurve.js"
|
|
},
|
|
"./timeline-edits": {
|
|
"types": "./dist/src/timelineEdits.d.ts",
|
|
"import": "./dist/src/timelineEdits.js",
|
|
"default": "./dist/src/timelineEdits.js"
|
|
},
|
|
"./voices": {
|
|
"types": "./dist/src/voices.d.ts",
|
|
"import": "./dist/src/voices.js",
|
|
"default": "./dist/src/voices.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"bin",
|
|
"dist",
|
|
"skills",
|
|
"templates"
|
|
],
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write .",
|
|
"format:check": "prettier --check .",
|
|
"lint": "eslint .",
|
|
"lint:fix": "eslint . --fix",
|
|
"type-check": "tsc --noEmit",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "vitest",
|
|
"test:run": "vitest run",
|
|
"test:e2e": "playwright test",
|
|
"test:e2e:ui": "playwright test --ui",
|
|
"prepare": "husky",
|
|
"release": "npm run test:run && bash scripts/update-version.sh"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "1.61.1",
|
|
"@sveltejs/vite-plugin-svelte": "^6.0.0",
|
|
"@types/node": "25.0.3",
|
|
"@types/react": "^19.0.0",
|
|
"@types/react-dom": "^19.0.0",
|
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
"eslint": "^9.39.2",
|
|
"eslint-plugin-unused-imports": "^4.3.0",
|
|
"husky": "^9.1.7",
|
|
"lint-staged": "^16.2.7",
|
|
"playwright-core": "1.61.1",
|
|
"prettier": "^3.9.6",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"solid-js": "^1.9.0",
|
|
"svelte": "^5.0.0",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "5.9.3",
|
|
"typescript-eslint": "^8.50.0",
|
|
"vite": "^7.0.0",
|
|
"vite-plugin-solid": "^2.11.0",
|
|
"vitest": "~4.0.16",
|
|
"vue": "^3.5.0"
|
|
},
|
|
"peerDependencies": {
|
|
"@playwright/test": ">=1.59.0",
|
|
"@sveltejs/vite-plugin-svelte": ">=5",
|
|
"@vitejs/plugin-vue": ">=5",
|
|
"react": ">=18",
|
|
"react-dom": ">=18",
|
|
"solid-js": ">=1.8",
|
|
"svelte": ">=5",
|
|
"vite": ">=6",
|
|
"vite-plugin-solid": ">=2.10",
|
|
"vue": ">=3.4"
|
|
},
|
|
"peerDependenciesMeta": {
|
|
"@sveltejs/vite-plugin-svelte": {
|
|
"optional": true
|
|
},
|
|
"@vitejs/plugin-vue": {
|
|
"optional": true
|
|
},
|
|
"react": {
|
|
"optional": true
|
|
},
|
|
"react-dom": {
|
|
"optional": true
|
|
},
|
|
"solid-js": {
|
|
"optional": true
|
|
},
|
|
"svelte": {
|
|
"optional": true
|
|
},
|
|
"vite": {
|
|
"optional": true
|
|
},
|
|
"vite-plugin-solid": {
|
|
"optional": true
|
|
},
|
|
"vue": {
|
|
"optional": true
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"@inquirer/prompts": "^7.10.1",
|
|
"commander": "^13.1.0",
|
|
"ffmpeg-static": "^5.3.0",
|
|
"ora": "^8.2.0",
|
|
"picocolors": "^1.1.1",
|
|
"playwright-recorder-plus": "^0.1.3"
|
|
}
|
|
}
|