-
-
Notifications
You must be signed in to change notification settings - Fork 203
/
Copy pathpackage.json
48 lines (48 loc) · 1.21 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
{
"name": "@angular-builders/bazel",
"description": "Run Bazel under the Angular CLI",
"license": "Apache-2.0",
"version": "19.0.0",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/just-jeb/angular-builders.git",
"directory": "packages/bazel"
},
"bugs": {
"url": "https://github.com/just-jeb/angular-builders/issues"
},
"keywords": [
"angular",
"bazel"
],
"builders": "./builders.json",
"main": "dist/index.js",
"files": [
"dist",
"builders.json"
],
"scripts": {
"prebuild": "yarn clean && yarn generate",
"build": "yarn prebuild && tsc && yarn postbuild",
"postbuild": "yarn copy",
"clean": "rimraf dist src/schema.ts",
"copy": "cpy --flat src/schema.json dist",
"generate": "quicktype -s schema src/schema.json -o src/schema.ts",
"ci": "node ./scripts/ci.js"
},
"dependencies": {
"@angular-devkit/architect": ">=0.1900.0 < 0.2000.0",
"@bazel/bazelisk": "^1.4.0",
"@bazel/ibazel": "^0.25.0"
},
"devDependencies": {
"@angular-devkit/core": "^19.0.0",
"cpy-cli": "^5.0.0",
"quicktype": "^15.0.260",
"rimraf": "^5.0.0",
"typescript": "5.6.2"
}
}