-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
58 lines (58 loc) · 1.41 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
49
50
51
52
53
54
55
56
57
58
{
"name": "semantic-kernel-root",
"private": true,
"scripts": {
"build": "turbo build",
"build:watch": "turbo watch build",
"prettier": "prettier --write src",
"clean": "turbo clean",
"test": "turbo test",
"version-packages": "changeset",
"publish-packages": "turbo run build test && changeset version && changeset publish"
},
"packageManager": "[email protected]",
"workspaces": [
"src/*"
],
"files": [
"dist/**/**",
"docs/**/**",
"!**/*.spec.*",
"!**/*.json",
"!**/*.tsbuildinfo",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/afshinm/semantic-kernel-js.git"
},
"keywords": [
"semantic-kernel"
],
"author": "Afshin Mehrabani",
"license": "MIT",
"bugs": {
"url": "https://github.com/afshinm/semantic-kernel-js/issues"
},
"homepage": "https://github.com/afshinm/semantic-kernel-js#readme",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"eslint": "^9.9.0",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.3.3",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"turbo": "^2.0.14",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"dependencies": {
"@changesets/cli": "^2.27.9"
}
}