-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.45 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.45 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
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
{
"name": "@google/aside",
"version": "1.4.6",
"type": "module",
"description": "Apps Script IDE framework",
"bin": "dist/src/index.js",
"files": [
"deploy-ui.mjs",
"fix-animations.mjs",
"dist/src",
"dist/.gitignore-target",
".claspignore",
".editorconfig",
".eslintignore",
".eslintrc.json",
"jest.config.json",
"LICENSE",
"license-config.json",
"license-header.txt",
".prettierignore",
".prettierrc.json",
"rollup.config.mjs",
"tsconfig.json",
"template",
"template-ui"
],
"repository": "google/aside",
"main": "index.js",
"scripts": {
"clean": "rimraf build",
"lint": "npm run license && eslint --fix src/ test/",
"lint:staged": "npm run license && lint-staged",
"build": "npm run clean && npm run lint && tsc && npm run copy-files",
"license": "license-check-and-add add -f license-config.json",
"test": "jest test/ --detectOpenHandles",
"copy-files": "ncp .gitignore dist/.gitignore-target",
"prepare": "is-ci || husky install"
},
"keywords": [
"typescript",
"apps-script",
"ide",
"google"
],
"engines": {
"node": ">=22"
},
"author": "Google Inc.",
"license": "Apache-2.0",
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^11.0.1",
"@types/google-apps-script": "^1.0.59",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.3",
"@types/prompts": "^2.4.3",
"@types/write-file-atomic": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-html": "^7.1.0",
"eslint-plugin-prettier": "^4.2.1",
"gts": "^3.1.1",
"husky": "^8.0.0",
"is-ci": "^3.0.1",
"jest": "^29.5.0",
"license-check-and-add": "^4.0.5",
"ncp": "^2.0.0",
"prettier": "^2.8.5",
"rimraf": "^4.4.0",
"rollup": "^3.20.0",
"ts-jest": "^29.0.5",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"dependencies": {
"chalk": "^5.2.0",
"cross-spawn": "^7.0.3",
"fs-extra": "^11.1.0",
"json5": "^2.2.3",
"lint-staged": "^13.2.0",
"meow": "^11.0.0",
"prompts": "^2.4.2",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-license": "^3.0.1",
"rollup-plugin-prettier": "^3.0.0",
"rollup-plugin-typescript2": "^0.34.1",
"write-file-atomic": "^5.0.0"
},
"peerDependencies": {
"typescript": ">=4"
}
}