-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.97 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.97 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
{
"name": "synthos",
"author": "Steven Ickman",
"description": "The Hyper-Personalized App Builder That Turns Everyone into a Programmer.",
"version": "0.11.1",
"license": "MIT",
"keywords": [
"synthos",
"ai"
],
"bugs": {
"url": "https://github.com/Stevenic-microsoft/synthtabs/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Stevenic-microsoft/synthtabs.git"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./bin/synthos.js",
"dependencies": {
"@a2a-js/sdk": "^0.3.10",
"@anthropic-ai/sdk": "^0.75.0",
"acorn": "^8.16.0",
"adm-zip": "^0.5.16",
"cheerio": "^1.2.0",
"express": "^4.19.2",
"open": "^10.1.0",
"openai": "^4.104.0",
"uuid": "^10.0.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/adm-zip": "^0.5.7",
"@types/assert": "^1.5.3",
"@types/cheerio": "^0.22.35",
"@types/express": "^4.17.21",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.31",
"@types/uuid": "10.0.0",
"@types/yargs": "17.0.24",
"mocha": "10.2.0",
"nyc": "^15.1.0",
"rimraf": "^5.0.1",
"ts-mocha": "10.0.0",
"typescript": "^4.2.3"
},
"scripts": {
"prebuild": "rimraf dist tsconfig.tsbuildinfo",
"build": "tsc -b",
"clean": "rimraf dist tsconfig.tsbuildinfo node_modules",
"start": "node ./bin/synthos.js start",
"test": "npm run build && npm run test:mocha",
"test:mocha": "nyc ts-mocha tests/**/*.spec.ts teams-tests/**/*.spec.ts"
},
"files": [
"dist",
"bin",
"src",
"default-pages",
"default-scripts",
"default-themes",
"static-files",
"required-pages",
"starters",
"service-connectors",
"migration-rules",
"scripts",
"tests"
]
}