CubismFramework/package.json

21 lines
504 B
JSON
Raw Normal View History

2020-01-30 17:28:13 +08:00
{
"private": true,
"scripts": {
"build": "tsc",
"test": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
2020-01-30 17:28:13 +08:00
"clean": "rimraf dist"
},
"devDependencies": {
2022-09-08 10:20:20 +08:00
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
2022-09-08 10:20:20 +08:00
"typescript": "^4.8.2"
2020-01-30 17:28:13 +08:00
}
}