-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
99 lines (99 loc) · 2.31 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
94
95
96
97
98
99
{
"name": "flame",
"version": "0.4.3",
"description": "flame CLI",
"license": "MIT",
"private": false,
"types": "build/types/types.d.ts",
"bin": {
"flame": "bin/flame"
},
"scripts": {
"clean-build": "rm -rf ./build",
"compile": "tsc -p ./tsconfig.json",
"build": "yarn clean-build && yarn compile",
"ci:publish": "yarn build && yarn semantic-release",
"format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write",
"test": "jest",
"semantic-release": "semantic-release"
},
"files": [
"build",
"LICENSE",
"README.md",
"docs",
"bin"
],
"dependencies": {
"gluegun": "latest",
"openai": "^4.14.2"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.9",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"copyfiles": "^2.4.1",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jest": "^29.6.4",
"prettier": "^3.0.3",
"pretty-quick": "^3.1.0",
"semantic-release": "^22.0.7",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"prettier": {
"semi": false,
"singleQuote": true,
"printWidth": 120
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier",
"plugin:prettier/recommended"
],
"rules": {}
},
"repository": {
"type": "git",
"url": "https://github.com/infinitered/flame.git"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": "package.json",
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
]
]
}
}