-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.57 KB
/
package.json
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
{
"name": "text_ads_generator",
"version": "1.0.0",
"description": "Text Ads Generator",
"main": "index.js",
"scripts": {
"clean": "rimraf build dist",
"lint": "npm run license && eslint --fix --no-error-on-unmatched-pattern src/ test/",
"bundle": "rollup --no-treeshake -c rollup.config.mjs",
"build": "npm run clean && npm run bundle && ncp appsscript.json dist/appsscript.json",
"test": "jest test/ --passWithNoTests --detectOpenHandles",
"license": "license-check-and-add add -f license-config.json",
"deploy": "npm run lint && npm run test && npm run build && ncp .clasp-dev.json .clasp.json && clasp push -f",
"deploy:prod": "npm run lint && npm run test && npm run build && ncp .clasp-prod.json .clasp.json && clasp push"
},
"keywords": [
"Google",
"Ads",
"LLM",
"Text Ads",
"GenAI"
],
"author": "[email protected]",
"license": "Apache-2.0",
"dependencies": {
"@google/clasp": "^2.4.2",
"@types/google-apps-script": "^1.0.64",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"rimraf": "^5.0.1",
"ncp": "^2.0.0",
"license-check-and-add": "^4.0.5",
"rollup": "^3.23.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-prettier": "^3.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"prettier": "^2.8.8",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3"
}
}