-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.84 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
{
"name": "@atscale-ps/ps-utils",
"version": "2.0.0",
"description": "AtScale PS utilities — CLI and library for SML generation, deployment, and analysis",
"type": "module",
"license": "Apache-2.0",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/AtScaleInc/ps-utils",
"repository": {
"type": "git",
"url": "git+https://github.com/AtScaleInc/ps-utils.git"
},
"tags": [
"atscale",
"utils"
],
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"atscale-utils": "atscale-utils"
},
"files": [
"dist",
"action.yml",
"atscale-utils"
],
"scripts": {
"build": "tsc -p tsconfig.json && node scripts/copy-ejs.mjs && npm run generate:completions && npm run generate:graphql-docs && npm run generate:rest-docs",
"start": "npm run build && node dist/cli.js",
"dev": "tsc -p tsconfig.json --watch",
"test": "vitest run",
"generate:completions": "node dist/scripts/generate-completions.js",
"generate:graphql-docs": "node dist/scripts/generate-graphql-docs.js",
"generate:rest-docs": "node dist/scripts/generate-rest-docs.js"
},
"dependencies": {
"@types/node": "^25.3.0",
"axios": "^1.13.5",
"busboy": "^1.6.0",
"ejs": "^3.1.10",
"exceljs": "^4.4.0",
"graphql": "^16.13.2",
"graphql-yoga": "^5.21.0",
"js-yaml": "^4.1.1",
"jszip": "^3.10.1",
"pg": "^8.20.0",
"snowflake-sdk": "^2.3.6",
"xml2js": "^0.6.2",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/busboy": "^1.5.4",
"@types/ejs": "^3.1.5",
"@types/js-yaml": "^4.0.9",
"@types/pg": "^8.20.0",
"@types/uuid": "^10.0.0",
"@types/xml2js": "^0.4.14",
"typescript": "^5.5.4",
"vitest": "^4.1.5"
}
}