-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.23 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@thinairthings/air-graph",
"author": "Dan Lannan",
"version": "1.3.6",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup",
"prepublishOnly": "npm run build",
"npmpub": "npm run build && git add . && git commit -m \"mod\" && git push && npm version patch && npm publish --access public",
"format": "npx prettier --write .",
"commit": "npx cz",
"testing": "NODE_ENV=dev node --import tsx/esm --env-file .env.local ./src/testing.ts",
"dev": "nodemon --watch src --ext ts,tsx --exec 'npm run build'"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ThinAirThings/air-graph.git"
},
"keywords": [],
"dependencies": {
"immer": "^10.0.4",
"openai": "^4.33.0",
"uuid": "^9.0.1",
"zod": "^3.22.4"
},
"peerDependencies": {
"neo4j-driver": "^5.19.0",
"zustand": "^4.5.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^12.0.0",
"@types/node": "20.6.3",
"@types/uuid": "^9.0.8",
"cz-conventional-changelog": "^3.3.0",
"dotenv": "^16.4.5",
"semantic-release": "^23.0.6",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"tsup": "^7.2.0",
"tsx": "^4.7.2",
"typescript": "^5.4.4"
},
"release": {
"branches": [
"main",
"next",
{
"name": "beta",
"prerelease": true
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "angular",
"releaseRules": [
{
"type": "docs",
"release": "patch"
},
{
"type": "build",
"release": "patch"
},
{
"type": "ci",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
}
}