-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.83 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.83 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "Google Publisher Tag Playground",
"version": "1.0.0",
"description": "An interactive GPT sample configurator and code playground.",
"type": "module",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"build": "npm run build:l10n && npm run fix && npm run build:ts && npm run build:rollup",
"build:l10n": "lit-localize extract && npm run build:l10n-test && lit-localize build",
"build:l10n-test": "npx -y tsx@latest scripts/gen-test-locale.ts",
"build:ts": "tsc",
"build:rollup": "rollup -c",
"fix": "gts fix",
"lint": "gts lint",
"serve": "wds --node-resolve --watch --root-dir dist/",
"test": "npm run build:ts && jasmine --config=jasmine.json",
"test:playwright": "playwright test"
},
"dependencies": {
"@iabtechlabtcf/cmpapi": "^1.5.21",
"@lit-labs/signals": "^0.1.3",
"@lit/localize": "^0.12.2",
"@material/web": "^2.4.1",
"lit": "^3.3.2",
"lodash-es": "^4.17.23",
"playground-elements": "^0.18.1",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"devDependencies": {
"@lit/localize-tools": "^0.8.1",
"@playwright/test": "^1.58.2",
"@rollup/plugin-commonjs": "^25.0.8",
"@rollup/plugin-node-resolve": "^15.3.1",
"@types/google-publisher-tag": "^1.20260309.1",
"@types/googlefc": "^1.0.5",
"@types/jasmine": "^5.1.15",
"@types/lodash-es": "^4.17.12",
"@types/node": "^20.19.37",
"@web/dev-server": "^0.3.7",
"@web/rollup-plugin-import-meta-assets": "^2.3.3",
"@xmldom/xmldom": "^0.9.8",
"glob": "^12.0.0",
"gts": "^6.0.2",
"jasmine": "^5.13.0",
"rollup": "^4.59.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-esbuild": "^6.2.1",
"rollup-plugin-minify-html-literals-v3": "^1.3.4",
"rollup-plugin-summary": "^3.0.1",
"ts-node": "^10.9.2"
}
}