-
Notifications
You must be signed in to change notification settings - Fork 439
/
Copy pathpackage.json
135 lines (135 loc) Β· 3.56 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
{
"name": "@google/clasp",
"version": "3.0.2-alpha",
"description": "Develop Apps Script Projects locally",
"type": "module",
"exports": "./build/src/index.js",
"main": "build/src/index.js",
"engines": {
"node": " >=20.0.0"
},
"bin": {
"clasp": "build/src/index.js"
},
"files": [
"docs",
"build/src"
],
"scripts": {
"build": "npm run compile && npm i --loglevel=error --force",
"build-fresh": "npm cache clean --force && npm i && npm run build",
"watch": "tspc --project tsconfig.json --watch",
"prepare": "npm run compile",
"lint": "npm run check",
"test": "mocha",
"test:coverage": "c8 mocha",
"prettier": "biome format src test --write",
"check": "biome check src test && npm run compile",
"clean": "rm -rf build",
"compile": "tspc",
"fix": "biome check src test --fix",
"clasp": "node --loader ts-node/esm --no-warnings src/index.ts"
},
"messageformat": {
"locale": [
"en"
],
"include": [
"src/messages/"
],
"outfile": "src/messages/messages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/google/clasp"
},
"keywords": [
"Apps",
"Script",
"SDK",
"API",
"script.google.com",
"extension",
"add-on"
],
"author": "Grant Timmerman",
"license": "Apache-2.0",
"dependencies": {
"@formatjs/intl": "^3.1.4",
"@messageformat/core": "^3.4.0",
"@sindresorhus/is": "^7.0.1",
"@types/debug": "^4.1.12",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"cli-truncate": "^4.0.0",
"commander": "^13.0.0",
"debounce": "^2.2.0",
"debug": "^4.4.0",
"dotf": "^2.0.2",
"fdir": "^6.4.3",
"find-up": "^7.0.0",
"fuzzy": "^0.1.3",
"gaxios": "^6.7.1",
"google-auth-library": "^9.15.0",
"googleapis": "^144.0.0",
"googleapis-common": "7.2.0",
"inflection": "^3.0.2",
"inquirer": "^12.3.2",
"inquirer-autocomplete-standalone": "^0.8.1",
"log-symbols": "^7.0.0",
"loud-rejection": "^2.2.0",
"make-dir": "^5.0.0",
"micromatch": "^4.0.8",
"multimatch": "^7.0.0",
"normalize-newline": "^4.1.0",
"normalize-path": "^3.0.0",
"open": "^10.1.0",
"ora": "^8.1.1",
"p-map": "^7.0.3",
"picomatch": "^4.0.2",
"read-pkg-up": "^11.0.0",
"server-destroy": "^1.0.1",
"split-lines": "^3.0.0",
"strip-bom": "^5.0.0",
"typescript": "^5.7.3"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commander-js/extra-typings": "^13.0.0",
"@formatjs/ts-transformer": "^3.13.32",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@messageformat/cli": "^4.0.1",
"@types/chai": "^5.0.1",
"@types/chai-as-promised": "^8.0.1",
"@types/chai-fs": "^2.0.5",
"@types/chai-subset": "^1.3.5",
"@types/debounce": "^1.2.4",
"@types/fs-extra": "^11.0.4",
"@types/micromatch": "^4.0.9",
"@types/mocha": "^10.0.10",
"@types/mock-fs": "^4.13.4",
"@types/node": "^22.10.10",
"@types/normalize-path": "^3.0.2",
"@types/picomatch": "^3.0.2",
"@types/server-destroy": "^1.0.4",
"@types/sinon": "^17.0.4",
"@types/tmp": "^0.2.6",
"@types/wtfnode": "^0.7.3",
"c8": "^10.1.3",
"chai": "^5.1.2",
"chai-as-promised": "^8.0.1",
"chai-subset": "^1.6.0",
"mocha": "^11.1.0",
"mock-fs": "^5.4.1",
"nock": "^14.0.0",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"source-map-support": "^0.5.21",
"tmp": "^0.2.3",
"ts-node": "^10.9.2",
"ts-patch": "^3.3.0",
"type-fest": "^4.33.0",
"why-is-node-running": "^3.2.2",
"wtfnode": "^0.10.0"
}
}