-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.13 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
{
"name": "@solidxai/code-builder",
"version": "0.1.8",
"description": "This package is use to generate code for the @solidxai projects",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"prebuild": "npm run clean",
"build": "tsc && tsc-alias",
"test": "npm run build && jasmine src/**/*_spec.js",
"postbuild": "copyfiles './files/**/*' dist/",
"clean": "rimraf dist",
"prepare": "npm run build"
},
"keywords": [
"schematics"
],
"author": "",
"license": "BUSL-1.1",
"schematics": "./dist/collection.json",
"dependencies": {
"@angular-devkit/core": "^18.0.1",
"@angular-devkit/schematics": "^18.0.1",
"@nestjs/schematics": "^10.1.1",
"@schematics/angular": "^18.0.1",
"class-validator": "^0.14.1",
"crypto": "^1.0.1",
"lodash": "^4.17.21"
},
"devDependencies": {
"@angular-devkit/schematics-cli": "^18.0.7",
"@types/jasmine": "~5.1.0",
"@types/lodash": "^4.17.0",
"@types/node": "^18.18.0",
"jasmine": "^5.0.0",
"typescript": "^5.7.3",
"copyfiles": "^2.4.1",
"rimraf": "^6.0.1",
"tsc-alias": "^1.8.10"
}
}