-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.14 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "tsjs",
"version": "0.1.0",
"private": true,
"type": "module",
"description": "Trusted Server tsjs TypeScript library with queue and simple banner rendering.",
"scripts": {
"build": "node build-all.mjs",
"dev": "vite build --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "eslint --fix \"src/**/*.{ts,tsx}\"",
"format": "prettier --check \"**/*.{ts,tsx,js,json,css,md}\"",
"format:write": "prettier --write \"**/*.{ts,tsx,js,json,css,md}\""
},
"dependencies": {
"prebid.js": "^10.26.0"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"@types/jsdom": "^27.0.0",
"@types/node": "^25.5.0",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^62.5.4",
"eslint-plugin-unicorn": "^62.0.0",
"jsdom": "^28.0.0",
"prettier": "^3.2.5",
"typescript": "^5.5.4",
"typescript-eslint": "^8.56.1",
"vite": "^7.3.1",
"vitest": "^4.0.8"
}
}