Demo application (tic-tac-toe game and more) built with Web Components, with progressive enhancement.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
sample-tictactoe/package.json

25 lines
664 B

{
"name": "test-assignment-tictactoe",
"version": "1.0.0",
"scripts": {
"lint": "eslint src",
"prerelease": "npm run lint && npm run typecheck && npm run test",
"test": "tap",
"typecheck": "tsc --noEmit --project tsconfig.json"
},
"author": "Inga",
"license": "CNPLv7",
"type": "module",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@tsconfig/strictest": "^2.0.5",
"@types/eslint__js": "^8.42.3",
"eslint": "9.14.x",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"tap": "^21.0.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
}
}