This repository has been archived on 2024-05-25. You can view files and clone it, but cannot push or open issues or pull requests.
shockwave-bundler/package.json
Rypi Development e71a1939ba Initial commit
2023-07-31 16:32:33 +00:00

39 lines
1.1 KiB
JSON

{
"name": "@rypidev/shockwave-bundler",
"version": "0.0.0",
"type": "module",
"license": "MIT",
"author": "Walidoux",
"scripts": {
"dev": "ts-node-dev --respawn src/index.ts",
"build": "rm -rf dist && tsc -p tsconfig.json",
"start": "yarn build && ts-node dist/index.js",
"lint:typescript": "eslint \"**/*.ts\" --ignore-path \".gitignore\" && tsc --noemit",
"lint:prettier": "prettier \".\" --check --ignore-path \".gitignore\"",
"lint:editorconfig": "editorconfig-checker"
},
"prettier": "@walidoux/prettier-config",
"dependencies": {
"swf-parser": "0.14.1",
"swf-types": "0.14.0",
"ts-node": "10.9.1",
"ts-node-dev": "1.1.8",
"free-tex-packer-core": "^0.3.4"
},
"devDependencies": {
"@tsconfig/recommended": "^1.0.2",
"@types/node": "^18.15.11",
"@walidoux/eslint-config": "1.0.3",
"@walidoux/prettier-config": "1.0.3",
"editorconfig-checker": "^5.0.1",
"eslint": "8.38.0",
"prettier": "2.8.7",
"typescript": "^5.0.4"
},
"eslintConfig": {
"extends": [
"@walidoux/eslint-config"
]
}
}